summaryrefslogtreecommitdiff
path: root/src/ai
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2010-02-27 12:29:44 +0000
committeralberth <alberth@openttd.org>2010-02-27 12:29:44 +0000
commit2ac558494caf7dfca5347a56bc85a92de9ed888f (patch)
tree8b8129a210ff108111786ee8e36ba1d181841b16 /src/ai
parent13f1836149b3dbf86cbee45eeaaae82230563bfb (diff)
downloadopenttd-2ac558494caf7dfca5347a56bc85a92de9ed888f.tar.xz
(svn r19272) -Doc: successfull -> successful.
Diffstat (limited to 'src/ai')
-rw-r--r--src/ai/ai_config.hpp2
-rw-r--r--src/ai/ai_instance.hpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/ai/ai_config.hpp b/src/ai/ai_config.hpp
index 05afda9d6..314082aa4 100644
--- a/src/ai/ai_config.hpp
+++ b/src/ai/ai_config.hpp
@@ -46,7 +46,7 @@ public:
/**
* When ever the AI Scanner is reloaded, all infos become invalid. This
* function tells AIConfig about this.
- * @return True if the reset was successfull, false if the AI was no longer
+ * @return \c true if the reset was successful, \c false if the AI was no longer
* found.
*/
bool ResetInfo();
diff --git a/src/ai/ai_instance.hpp b/src/ai/ai_instance.hpp
index d9e519a7e..d1b49e57b 100644
--- a/src/ai/ai_instance.hpp
+++ b/src/ai/ai_instance.hpp
@@ -172,13 +172,13 @@ private:
* with before an error is returned.
* @param test If true, don't really store the data but only check if it is
* valid.
- * @return True if the saving was successfull.
+ * @return True if the saving was successful.
*/
static bool SaveObject(HSQUIRRELVM vm, SQInteger index, int max_depth, bool test);
/**
* Load all objects from a savegame.
- * @return True if the loading was successfull.
+ * @return True if the loading was successful.
*/
static bool LoadObjects(HSQUIRRELVM vm);
};