summaryrefslogtreecommitdiff
path: root/src/strgen
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2010-04-12 14:12:47 +0000
committersmatz <smatz@openttd.org>2010-04-12 14:12:47 +0000
commit0ef33548c20ae9cf73a6e9e850b17137b1453dd3 (patch)
tree90774f16ecabdadb1786b8e79cf2fa7c0ddedb8f /src/strgen
parent24a60b77ece2fabd866d0a6f4e3ecda3f2d52ea2 (diff)
downloadopenttd-0ef33548c20ae9cf73a6e9e850b17137b1453dd3.tar.xz
(svn r19614) -Codechange: "it's" => "its" where appropriate
Diffstat (limited to 'src/strgen')
-rw-r--r--src/strgen/strgen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strgen/strgen.cpp b/src/strgen/strgen.cpp
index 22450bddf..8992ad6c6 100644
--- a/src/strgen/strgen.cpp
+++ b/src/strgen/strgen.cpp
@@ -816,7 +816,7 @@ static void ParseFile(const char *file, bool english)
FILE *in;
char buf[2048];
- /* Only look at the final filename to determine whether it's be base language or not */
+ /* Only look at the final filename to determine whether it's the base language or not */
const char *cur_file = strrchr(_file, PATHSEPCHAR);
const char *next_file = strrchr(file, PATHSEPCHAR);
_translation = next_file != NULL && cur_file != NULL && strcmp(cur_file, next_file) != 0;