summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_base.hpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2010-08-15 14:06:43 +0000
committeralberth <alberth@openttd.org>2010-08-15 14:06:43 +0000
commit35fec79700a961ccd9f3d13bc068edccc63dc6a5 (patch)
tree89db9e984c5c6100fcaa55ee36f29fd6027132dc /src/ai/api/ai_base.hpp
parent15514baf8b19c87c559361798c8d7705f2b3edf0 (diff)
downloadopenttd-35fec79700a961ccd9f3d13bc068edccc63dc6a5.tar.xz
(svn r20499) -Doc: Spelling fixes, and one doxygen comment addition.
Diffstat (limited to 'src/ai/api/ai_base.hpp')
-rw-r--r--src/ai/api/ai_base.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ai/api/ai_base.hpp b/src/ai/api/ai_base.hpp
index d17bb05bd..40d7ed94b 100644
--- a/src/ai/api/ai_base.hpp
+++ b/src/ai/api/ai_base.hpp
@@ -36,7 +36,7 @@ public:
/**
* Get a random value.
- * @param unused_param This param is not used, but is needed to work with lists.
+ * @param unused_param This parameter is not used, but is needed to work with lists.
* @return A random value between 0 and MAX(uint32).
*/
static uint32 RandItem(int unused_param);
@@ -50,14 +50,14 @@ public:
/**
* Get a random value in a range.
- * @param unused_param This param is not used, but is needed to work with lists.
+ * @param unused_param This parameter is not used, but is needed to work with lists.
* @param max The first number this function will never return (the maximum it returns is max - 1).
* @return A random value between 0 .. max - 1.
*/
static uint RandRangeItem(int unused_param, uint max);
/**
- * Returns approximatelly 'out' times true when called 'max' times.
+ * Returns approximately 'out' times true when called 'max' times.
* After all, it is a random function.
* @param out How many times it should return true.
* @param max Out of this many times.
@@ -66,9 +66,9 @@ public:
static bool Chance(uint out, uint max);
/**
- * Returns approximatelly 'out' times true when called 'max' times.
+ * Returns approximately 'out' times true when called 'max' times.
* After all, it is a random function.
- * @param unused_param This param is not used, but is needed to work with lists.
+ * @param unused_param This parameter is not used, but is needed to work with lists.
* @param out How many times it should return true.
* @param max Out of this many times.
* @return True if the chance worked out.