fixed a typo in the comments of three love.physics functions (I'm being very useful)

This commit is contained in:
Bill Meltsner
2010-03-30 01:22:03 -04:00
parent 0d81774b4a
commit 6868e2241c
+3 -3
View File
@@ -110,7 +110,7 @@ namespace box2d
CircleShape * newCircleShape(Body * body, float x, float y, float radius); CircleShape * newCircleShape(Body * body, float x, float y, float radius);
/** /**
* Shorthand for creating rectangluar PolygonShapes. The rectangle * Shorthand for creating rectangular PolygonShapes. The rectangle
* will be created at the local origin. * will be created at the local origin.
* @param w The width of the rectangle. * @param w The width of the rectangle.
* @param h The height of the rectangle. * @param h The height of the rectangle.
@@ -118,7 +118,7 @@ namespace box2d
PolygonShape * newRectangleShape(Body * body, float w, float h); PolygonShape * newRectangleShape(Body * body, float w, float h);
/** /**
* Shorthand for creating rectangluar PolygonShapes. The rectangle * Shorthand for creating rectangular PolygonShapes. The rectangle
* will be created at (x,y) in local coordinates. * will be created at (x,y) in local coordinates.
* @param x The offset along the x-axis. * @param x The offset along the x-axis.
* @param y The offset along the y-axis. * @param y The offset along the y-axis.
@@ -128,7 +128,7 @@ namespace box2d
PolygonShape * newRectangleShape(Body * body, float x, float y, float w, float h); PolygonShape * newRectangleShape(Body * body, float x, float y, float w, float h);
/** /**
* Shorthand for creating rectangluar PolygonShapes. The rectangle * Shorthand for creating rectangular PolygonShapes. The rectangle
* will be created at (x,y) in local coordinates. * will be created at (x,y) in local coordinates.
* @param x The offset along the x-axis. * @param x The offset along the x-axis.
* @param y The offset along the y-axis. * @param y The offset along the y-axis.