From: Christoph Sommer Date: Sun, 24 Feb 2008 10:00:37 +0000 (+0000) Subject: Patch by Jonathan.Plona@Gmail.com, resolves issue 0000303: Typos X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=cd9c37dbcfdfd7ae8c9040ef913bd26227615f6f;p=supertux.git Patch by Jonathan.Plona@Gmail.com, resolves issue 0000303: Typos SVN-Revision: 5333 --- diff --git a/INSTALL b/INSTALL index ba366e41f..0958de9c1 100644 --- a/INSTALL +++ b/INSTALL @@ -98,7 +98,7 @@ INSTALLING UNDER LINUX/UNIX USING CMAKE You can customize the build process by setting additional options for CMake. The easiest way to do this is to use run `ccmake ..' instead of `cmake ..' - to bring up the curses-based user interface of CMake. Select and option using the + to bring up the curses-based user interface of CMake. Select an option using the arrow keys, change the selected option by pressing the Enter key, then hit the `c' (repeatedly, if necessary) to apply your changes and bring up new options resulting from your newly set ones. When you are done, press diff --git a/src/math/aatriangle.hpp b/src/math/aatriangle.hpp index 15a0db622..89c5ee5f7 100644 --- a/src/math/aatriangle.hpp +++ b/src/math/aatriangle.hpp @@ -23,7 +23,7 @@ #include "rect.hpp" /** - * An axis aligned triangle (ie. a triangle where 2 sides are parallel to the x- + * An axis-aligned triangle (ie. a triangle where 2 sides are parallel to the x- * and y-axis. */ class AATriangle : public Rect diff --git a/src/math/rect.hpp b/src/math/rect.hpp index 2c30258b7..ab95d2fb6 100644 --- a/src/math/rect.hpp +++ b/src/math/rect.hpp @@ -26,7 +26,7 @@ /** This class represents a rectangle. * (Implementation Note) We're using upper left and lower right point instead of * upper left and width/height here, because that makes the collision dectection - * a little bit efficienter. + * a little bit more efficient. */ class Rect { @@ -109,7 +109,7 @@ public: return true; } - // leave these 2 public to safe the headaches of set/get functions for such + // leave these two public to save the headaches of set/get functions for such // simple things :) /// upper left edge diff --git a/src/object/player.cpp b/src/object/player.cpp index 489283e84..eac5fce2e 100644 --- a/src/object/player.cpp +++ b/src/object/player.cpp @@ -70,7 +70,7 @@ static const float SKID_XM = 200; static const float SKID_TIME = .3f; /** maximum walk velocity (pixel/s) */ static const float MAX_WALK_XM = 230; -/** maximum run velcoity (pixel/s) */ +/** maximum run velocity (pixel/s) */ static const float MAX_RUN_XM = 320; /** maximum horizontal climb velocity */ static const float MAX_CLIMB_XM = 48; diff --git a/src/physic.hpp b/src/physic.hpp index 392218023..5275779b7 100644 --- a/src/physic.hpp +++ b/src/physic.hpp @@ -43,7 +43,7 @@ public: void set_velocity_x(float vx); void set_velocity_y(float vy); - /// Velocities invertion. + /// Velocities inversion. void inverse_velocity_x(); void inverse_velocity_y();