changeset 20631:750be4e674e0 draft

(svn r25579) -Fix [FS#5642] (r25577): doxygen generation failed + typo fix
author rubidium <rubidium@openttd.org>
date Wed, 10 Jul 2013 15:38:42 +0000
parents 72b4fbf6ee6c
children a8dcb1c71b31
files src/script/api/script_list.hpp
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/script/api/script_list.hpp
+++ b/src/script/api/script_list.hpp
@@ -33,11 +33,11 @@
 
 	/** Sort ascending */
 	static const bool SORT_ASCENDING = true;
-	/** Sort descnding */
+	/** Sort descending */
 	static const bool SORT_DESCENDING = false;
 
 private:
-	ScriptListSorter *sorter;         ///< Sorting algorithm
+	ScriptListSorter *sorter;     ///< Sorting algorithm
 	SorterType sorter_type;       ///< Sorting type
 	bool sort_ascending;          ///< Whether to sort ascending or descending
 	bool initialized;             ///< Whether an iteration has been started
@@ -63,7 +63,7 @@
 	void AddItem(int32 item, int32 value);
 #else
 	void AddItem(int32 item, int32 value = 0);
-#endif
+#endif /* DOXYGEN_API */
 
 	/**
 	 * Remove a single item from the list.