(svn r12822) [NoAI] -Fix: minor documentation typo noai
authortruebrain
Mon, 21 Apr 2008 18:09:52 +0000
branchnoai
changeset 10290 74e044af664d
parent 10289 d9c1adea89be
child 10291 11cb78922367
(svn r12822) [NoAI] -Fix: minor documentation typo
src/squirrel_class.hpp
--- a/src/squirrel_class.hpp	Mon Apr 21 17:58:23 2008 +0000
+++ b/src/squirrel_class.hpp	Mon Apr 21 18:09:52 2008 +0000
@@ -49,7 +49,7 @@
 	}
 
 	/**
-	 * This defines a method inside a class for Squirrel with defined the params.
+	 * This defines a method inside a class for Squirrel with defined params.
 	 * @note If you define nparam, make sure that he first param is always 'x',
 	 *  which is the 'this' inside the function. This is hidden from the rest
 	 *  of the code, but without it calling your function will fail!
@@ -72,7 +72,7 @@
 	}
 
 	/**
-	 * This defines a static method inside a class for Squirrel whit defined the params.
+	 * This defines a static method inside a class for Squirrel with defined params.
 	 * @note If you define nparam, make sure that he first param is always 'x',
 	 *  which is the 'this' inside the function. This is hidden from the rest
 	 *  of the code, but without it calling your function will fail!