summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/dwu/operators2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dwu/operators b/include/dwu/operators
index fde9118..24dcd96 100644
--- a/include/dwu/operators
+++ b/include/dwu/operators
@@ -34,7 +34,7 @@ written out min-comparison, like this:
auto const lsz = l.size(); auto const rsz = r.size();
Cl<T,A> v( (lsz < rsz) ? lsz : rsz );
-This is used instead of <algorithm> container for two reasons:
+This is used instead of std::min defined <algorithm> for two reasons:
1. It avoids inclusion of a header. Although <algorithm> is rather
lightweight, the extra compile time is measureable.