summaryrefslogtreecommitdiff
path: root/src/script/api/script_log.hpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2012-03-04 16:54:12 +0000
committerrubidium <rubidium@openttd.org>2012-03-04 16:54:12 +0000
commit22637f139fa73dc526982fdbe3ba79d8bfef438a (patch)
tree0c3a16d254e5992cade4d325bb3876ff4a37b3a3 /src/script/api/script_log.hpp
parente6a828def1b25671b4115903cb81d97c4e2348d6 (diff)
downloadopenttd-22637f139fa73dc526982fdbe3ba79d8bfef438a.tar.xz
(svn r24008) -Cleanup/doc: try not to mention (No)AI in script APIs
Diffstat (limited to 'src/script/api/script_log.hpp')
-rw-r--r--src/script/api/script_log.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/script/api/script_log.hpp b/src/script/api/script_log.hpp
index 589310694..a95e1ccbf 100644
--- a/src/script/api/script_log.hpp
+++ b/src/script/api/script_log.hpp
@@ -20,13 +20,13 @@
*/
class ScriptLog : public ScriptObject {
/* ScriptController needs access to Enum and Log, in order to keep the flow from
- * OpenTTD core to NoAI API clear and simple. */
+ * OpenTTD core to script API clear and simple. */
friend class ScriptController;
public:
/**
* Log levels; The value is also feed to DEBUG() lvl.
- * This has no use for you, as AI writer.
+ * This has no use for you, as script writer.
* @api -all
*/
enum ScriptLogType {
@@ -38,8 +38,8 @@ public:
};
/**
- * Internal representation of the log-data inside the AI.
- * This has no use for you, as AI writer.
+ * Internal representation of the log-data inside the script.
+ * This has no use for you, as script writer.
* @api -all
*/
struct LogData {