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;