summaryrefslogtreecommitdiff
path: root/src/core/sort_func.hpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2010-05-30 13:05:36 +0000
committeralberth <alberth@openttd.org>2010-05-30 13:05:36 +0000
commit51e67a40e09b6fba154704e89c5ea5462c7552cb (patch)
tree64e8ab2f0dfe83bfbc639db21452d17bfb1ffce4 /src/core/sort_func.hpp
parentef353f69cac6eeef1ce0fc6c7de118479536105d (diff)
downloadopenttd-51e67a40e09b6fba154704e89c5ea5462c7552cb.tar.xz
(svn r19909) -Doc: Typo fixes, small doxygen improvements.
Diffstat (limited to 'src/core/sort_func.hpp')
-rw-r--r--src/core/sort_func.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/sort_func.hpp b/src/core/sort_func.hpp
index 180191f4d..94aef195f 100644
--- a/src/core/sort_func.hpp
+++ b/src/core/sort_func.hpp
@@ -38,7 +38,7 @@ static FORCEINLINE void QSortT(T *base, uint num, int (CDECL *comparator)(const
* Type safe Gnome Sort.
*
* This is a slightly modifyied Gnome search. The basic
- * Gnome search trys to sort already sorted list parts.
+ * Gnome search tries to sort already sorted list parts.
* The modification skips these.
*
* @note Use this sort for presorted / regular sorted data.