summaryrefslogtreecommitdiff
path: root/integer.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-12-15 03:37:48 -0500
committerJeffrey Walton <noloader@gmail.com>2020-12-15 03:37:48 -0500
commit1d29d4c15d7cf403efe787091b9afa272db4fb42 (patch)
tree88031746e845db7b286ce811e80d33378cf7631a /integer.h
parent03c4290bdfcf6f1a05e15af2c141fc99c1847feb (diff)
downloadcryptopp-git-1d29d4c15d7cf403efe787091b9afa272db4fb42.tar.gz
Clear Clang -Wdocumentation warnings
Diffstat (limited to 'integer.h')
-rw-r--r--integer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/integer.h b/integer.h
index c36aed91..d727bdf7 100644
--- a/integer.h
+++ b/integer.h
@@ -705,8 +705,8 @@ public:
/// \param a a constant reference to an Integer
/// \return a reference to a std::ostream reference
/// \details The output integer responds to std::hex, std::oct, std::hex, std::upper and
- /// std::lower. The output includes the suffix \a \b h (for hex), \a \b . (\a \b dot, for dec)
- /// and \a \b o (for octal). There is currently no way to suppress the suffix.
+ /// std::lower. The output includes the suffix \a h (for hex), \a . (\a dot, for dec)
+ /// and \a o (for octal). There is currently no way to suppress the suffix.
/// \details If you want to print an Integer without the suffix or using an arbitrary base, then
/// use IntToString<Integer>().
/// \sa IntToString<Integer>