From 11a835b6ce3a0bfe4b985c94361247f8916ea7e6 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Sun, 27 Dec 2009 11:12:05 +0000 Subject: Typo. svn-id: r46621 --- test/common/algorithm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/common') diff --git a/test/common/algorithm.h b/test/common/algorithm.h index 79845b835f..bc10841fae 100644 --- a/test/common/algorithm.h +++ b/test/common/algorithm.h @@ -12,11 +12,11 @@ class AlgorithmTestSuite : public CxxTest::TestSuite { 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)) -- cgit v1.2.3