summaryrefslogtreecommitdiff
path: root/src/console_cmds.cpp
diff options
context:
space:
mode:
authorplanetmaker <planetmaker@openttd.org>2011-04-15 06:20:01 +0000
committerplanetmaker <planetmaker@openttd.org>2011-04-15 06:20:01 +0000
commit2f226fb72524bec53ed9dbf4188840caaedd13ca (patch)
treee62a09705baae02a28f2770ce8b85f312fccb6c7 /src/console_cmds.cpp
parentc4a4866316fae0ed3c4ea55bdff6df00b83f9e29 (diff)
downloadopenttd-2f226fb72524bec53ed9dbf4188840caaedd13ca.tar.xz
(svn r22322) -Fix [FS#4593]: Obey the law of conservation of parantheses in the console help
Diffstat (limited to 'src/console_cmds.cpp')
-rw-r--r--src/console_cmds.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/console_cmds.cpp b/src/console_cmds.cpp
index 539a58663..d39b0373b 100644
--- a/src/console_cmds.cpp
+++ b/src/console_cmds.cpp
@@ -1459,8 +1459,8 @@ DEF_CONSOLE_CMD(ConHelp)
IConsolePrint(CC_DEFAULT, " - to assign strings, or use them as arguments, enclose it within quotes");
IConsolePrint(CC_DEFAULT, " like this: '<command> \"string argument with spaces\"'");
IConsolePrint(CC_DEFAULT, " - use 'help <command>' to get specific information");
- IConsolePrint(CC_DEFAULT, " - scroll console output with shift + (up | down) | (pageup | pagedown))");
- IConsolePrint(CC_DEFAULT, " - scroll console input history with the up | down arrows");
+ IConsolePrint(CC_DEFAULT, " - scroll console output with shift + (up | down | pageup | pagedown)");
+ IConsolePrint(CC_DEFAULT, " - scroll console input history with the up or down arrows");
IConsolePrint(CC_DEFAULT, "");
return true;
}