summaryrefslogtreecommitdiffstats
path: root/demos/embedded/raycasting/raycasting.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'demos/embedded/raycasting/raycasting.cpp')
-rw-r--r--demos/embedded/raycasting/raycasting.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/embedded/raycasting/raycasting.cpp b/demos/embedded/raycasting/raycasting.cpp
index 75ba147..21aa2c3 100644
--- a/demos/embedded/raycasting/raycasting.cpp
+++ b/demos/embedded/raycasting/raycasting.cpp
@@ -142,7 +142,7 @@ public:
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;