diff options
author | Jerome Pasion <jerome.pasion@nokia.com> | 2010-07-29 12:59:55 (GMT) |
---|---|---|
committer | Jerome Pasion <jerome.pasion@nokia.com> | 2010-07-29 12:59:55 (GMT) |
commit | 5bdb85e3b21bcf624eb1830aa32d027e0c6870fe (patch) | |
tree | e3193ee6947a112818e4a00adb54bc598ed142f5 /demos/embedded/raycasting/raycasting.cpp | |
parent | e98ec548d4f7b0558742014933457f756bdd8bf1 (diff) | |
download | Qt-5bdb85e3b21bcf624eb1830aa32d027e0c6870fe.zip Qt-5bdb85e3b21bcf624eb1830aa32d027e0c6870fe.tar.gz Qt-5bdb85e3b21bcf624eb1830aa32d027e0c6870fe.tar.bz2 |
Fixed spelling mistakes in documented functions, classes, etc. Part of QTBUG-11938 and QTBUG-10801
Diffstat (limited to 'demos/embedded/raycasting/raycasting.cpp')
-rw-r--r-- | demos/embedded/raycasting/raycasting.cpp | 2 |
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; |