demos/embedded/raycasting/raycasting.cpp
changeset 37 758a864f9613
parent 18 2f34d5167611
--- a/demos/embedded/raycasting/raycasting.cpp	Fri Sep 17 08:34:18 2010 +0300
+++ b/demos/embedded/raycasting/raycasting.cpp	Mon Oct 04 01:19:32 2010 +0300
@@ -142,7 +142,7 @@
         qreal dv = -2 * cosa / bufw;
 
         for (int ray = 0; ray < bufw; ++ray, u += du, v += dv) {
-            // everytime this ray advances 'u' units in x direction,
+            // every time this ray advances 'u' units in x direction,
             // it also advanced 'v' units in y direction
             qreal uu = (u < 0) ? -u : u;
             qreal vv = (v < 0) ? -v : v;