[Scummvm-cvs-logs] SF.net SVN: scummvm:[46621] scummvm/trunk/test/common/algorithm.h

lordhoto at users.sourceforge.net lordhoto at users.sourceforge.net
Sun Dec 27 12:12:05 CET 2009


Revision: 46621
          http://scummvm.svn.sourceforge.net/scummvm/?rev=46621&view=rev
Author:   lordhoto
Date:     2009-12-27 11:12:05 +0000 (Sun, 27 Dec 2009)

Log Message:
-----------
Typo.

Modified Paths:
--------------
    scummvm/trunk/test/common/algorithm.h

Modified: scummvm/trunk/test/common/algorithm.h
===================================================================
--- scummvm/trunk/test/common/algorithm.h	2009-12-27 11:06:05 UTC (rev 46620)
+++ scummvm/trunk/test/common/algorithm.h	2009-12-27 11:12:05 UTC (rev 46621)
@@ -12,11 +12,11 @@
 			return true;
 
 		// Check whether the container is sorted by the given binary predicate, which
-		// decides whether the first value passed preceeds the second value passed.
+		// decides whether the first value passed precedes the second value passed.
 		//
 		// To do that it checks an item and its follower in the container with the
 		// given predicate in reverse order, when it returns false everything is
-		// fine, when it returns false, the follower preceeds the item and thus
+		// fine, when it returns false, the follower precedes the item and thus
 		// the order is violated.
 		for (T prev = first++; first != last; ++prev, ++first) {
 			if (comp(*first, *prev))


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list