changeset 11099:71499222687f draft

(svn r15445) -Fix: little typos
author belugas <belugas@openttd.org>
date Wed, 11 Feb 2009 02:30:08 +0000
parents 2d409b263f46
children 9735390c5083
files src/core/smallmap_type.hpp
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/core/smallmap_type.hpp
+++ b/src/core/smallmap_type.hpp
@@ -45,7 +45,7 @@
 
 	/** Removes given pair from this map
 	 * @param pair pair to remove
-	 * @return true iff key was found
+	 * @return true if the key was found
 	 * @note it has to be pointer to pair in this map. It is overwritten by the last item.
 	 */
 	FORCEINLINE void Erase(Pair *pair)
@@ -56,7 +56,7 @@
 
 	/** Removes given key from this map
 	 * @param key key to remove
-	 * @return true iff key was found
+	 * @return true if the key was found
 	 * @note last item is moved to its place, so don't increase your iterator if true is returned!
 	 */
 	FORCEINLINE bool Erase(const T &key)
@@ -73,7 +73,7 @@
 	/** Adds new item to this map.
 	 * @param key key
 	 * @param data data
-	 * @return true iff the kay wasn't already present
+	 * @return true if the key wasn't already present
 	 */
 	FORCEINLINE bool Insert(const T &key, const U &data)
 	{