From 7e2e6856cc91b0aff3fc013e275d27bdf2acf3d2 Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Sat, 8 May 2010 18:27:44 +0000 Subject: [PATCH] Remove duplicate closing angle brackets. Fixes #4198 [SVN r61856] --- minmax/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/minmax/index.html b/minmax/index.html index 9a414e5..9b0312a 100644 --- a/minmax/index.html +++ b/minmax/index.html @@ -92,11 +92,11 @@ Synopsis of <boost/algorithm/minmax.hpp> namespace boost { template <class T> - tuple<T const&, T const&> > + tuple<T const&, T const&> minmax(const T& a, const T& b); template <class T, class BinaryPredicate> - tuple<T const&, T const&> > + tuple<T const&, T const&> minmax(const T& a, const T& b, BinaryPredicate comp); }