From 60fe5bdec96d2ca20d862e295f88a4105775d8ec Mon Sep 17 00:00:00 2001 From: Ryan Schmidt Date: Sun, 31 Jul 2022 12:24:34 -0500 Subject: [PATCH] Raytracer: Fix typo in comment --- Samples/Raytracer/raytracer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Samples/Raytracer/raytracer.c b/Samples/Raytracer/raytracer.c index 353ade55ab..89443529af 100644 --- a/Samples/Raytracer/raytracer.c +++ b/Samples/Raytracer/raytracer.c @@ -41,7 +41,7 @@ #include #include -pascal /* <- pascal calling convention, for no reason in particular except to test the comppiler */ +pascal /* <- pascal calling convention, for no reason in particular except to test the compiler */ bool hitSphere(float x0, float y0, float z0, float dx, float dy, float dz, float *t) { const float xc = 0.0f, yc = 0.0f, zc = -6.0f, r = 1.0f;