diff options
author | smatz <smatz@openttd.org> | 2010-04-12 14:12:47 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2010-04-12 14:12:47 +0000 |
commit | 0ef33548c20ae9cf73a6e9e850b17137b1453dd3 (patch) | |
tree | 90774f16ecabdadb1786b8e79cf2fa7c0ddedb8f /src/misc | |
parent | 24a60b77ece2fabd866d0a6f4e3ecda3f2d52ea2 (diff) | |
download | openttd-0ef33548c20ae9cf73a6e9e850b17137b1453dd3.tar.xz |
(svn r19614) -Codechange: "it's" => "its" where appropriate
Diffstat (limited to 'src/misc')
-rw-r--r-- | src/misc/binaryheap.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc/binaryheap.hpp b/src/misc/binaryheap.hpp index 7168cd03c..65c026ac0 100644 --- a/src/misc/binaryheap.hpp +++ b/src/misc/binaryheap.hpp @@ -23,7 +23,7 @@ /** * Binary Heap as C++ template. - * A carrier which keeps it's items automaticaly holds the smallest item at + * A carrier which keeps its items automaticaly holds the smallest item at * the first position. The order of items is maintained by using a binary tree. * The implementation is used for priority queue's. * |