diff --git a/mrw/stdext.hpp b/mrw/stdext.hpp index 082cc56..242fdda 100644 --- a/mrw/stdext.hpp +++ b/mrw/stdext.hpp @@ -9,6 +9,9 @@ @license LGPL, see file COPYING $Log$ + Revision 1.5 2005/01/28 07:52:33 marc + typo in doc + Revision 1.4 2004/12/20 07:40:36 marc documentation improved, new grouping @@ -63,7 +66,7 @@ namespace mrw { @param b second value to compare @return the lower of both values @pre #include - @pre @c T must support bool operator>(conbst T&, constT&) + @pre @c T must support bool operator>(const T&, constT&) */ template const T& min(const T& a, const T& b) { /// calls @c std::min(a, b); @@ -83,7 +86,7 @@ namespace mrw { @param b second value to compare @return the higher of both values @pre #include - @pre @c T must support bool operator<(conbst T&, constT&) + @pre @c T must support bool operator<(const T&, constT&) */ template const T& max(const T& a, const T& b) { /// calls @c std::max(a, b);