summaryrefslogtreecommitdiff
path: root/misc.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-12-25 00:49:48 -0500
committerJeffrey Walton <noloader@gmail.com>2020-12-25 00:49:48 -0500
commita0e960059fc456931a146f597ce38feb0a5b5ffb (patch)
treee36cc96aea4d6c71668fe35e567f84a515d2f4d0 /misc.h
parente61f5e0c791fe2c8532f17f32f0c66168d935817 (diff)
downloadcryptopp-git-a0e960059fc456931a146f597ce38feb0a5b5ffb.tar.gz
Update documentation
Diffstat (limited to 'misc.h')
-rw-r--r--misc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc.h b/misc.h
index d8e1f938..5f9e6eed 100644
--- a/misc.h
+++ b/misc.h
@@ -1113,7 +1113,7 @@ inline T2 ModPowerOf2(const T1 &a, const T2 &b)
/// \tparam T1 class or type
/// \tparam T2 class or type
/// \param n the value to reduce
-/// \param m the value to reduce \n to a multiple
+/// \param m the value to reduce <tt>n</tt> to a multiple
/// \return the possibly unmodified value \n
/// \details RoundDownToMultipleOf is effectively a floor function based on m. The function returns
/// the value <tt>n - n\%m</tt>. If n is a multiple of m, then the original value is returned.
@@ -1142,7 +1142,7 @@ inline T1 RoundDownToMultipleOf(const T1 &n, const T2 &m)
/// \tparam T1 class or type
/// \tparam T2 class or type
/// \param n the value to reduce
-/// \param m the value to reduce \n to a multiple
+/// \param m the value to reduce <tt>n</tt> to a multiple
/// \return the possibly unmodified value \n
/// \details RoundUpToMultipleOf is effectively a ceiling function based on m. The function
/// returns the value <tt>n + n\%m</tt>. If n is a multiple of m, then the original value is