aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/algorithm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/algorithm.h b/common/algorithm.h
index 6e6c6691ed..e2ee653fca 100644
--- a/common/algorithm.h
+++ b/common/algorithm.h
@@ -109,7 +109,7 @@ Op for_each(In first, In last, Op f) {
return f;
}
-// Simple sort function, modelled after std::sort.
+// Simple sort function, modeled after std::sort.
// Use it like this: sort(container.begin(), container.end()).
// Also work on plain old int arrays etc.
template<class T>