From ba3f706b1d726f36214a3281f7ffec1c0e1e9343 Mon Sep 17 00:00:00 2001 From: Ivan Matek Date: Sun, 29 Aug 2021 23:05:56 +0200 Subject: [PATCH] comment uniformization --- include/boost/algorithm/is_clamped.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/algorithm/is_clamped.hpp b/include/boost/algorithm/is_clamped.hpp index b4fe822..0d541f8 100644 --- a/include/boost/algorithm/is_clamped.hpp +++ b/include/boost/algorithm/is_clamped.hpp @@ -48,10 +48,10 @@ namespace boost { namespace algorithm { /// \fn is_clamped ( T const& val, /// typename boost::mpl::identity::type const & lo, /// typename boost::mpl::identity::type const & hi) -/// \returns true if value "val" is in the range [ lo, hi ] +/// \returns true if value val is in the range [ lo, hi ] /// using operator < for comparison. /// If the value is less than lo, return false. -/// If the value is greater than "hi", return false. +/// If the value is greater than hi, return false. /// Otherwise, returns true. /// /// \param val The value to be checked