summaryrefslogtreecommitdiff
path: root/integer.h
diff options
context:
space:
mode:
authorklemens <ka7@github.com>2016-12-27 18:34:57 +0100
committerklemens <ka7@github.com>2016-12-27 18:34:57 +0100
commit5a5c6330735798ed7670cfe1d28986d0a88fb6a9 (patch)
tree5c351b3fbc98cfeeb3d9c7fdd0fc926724223e30 /integer.h
parent06f79d904d5d4a801910e31bcca2846e5afbeaff (diff)
downloadcryptopp-git-5a5c6330735798ed7670cfe1d28986d0a88fb6a9.tar.gz
spelling fixes
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 5dd80101..20018297 100644
--- a/integer.h
+++ b/integer.h
@@ -22,7 +22,7 @@
NAMESPACE_BEGIN(CryptoPP)
//! \struct InitializeInteger
-//! \brief Performs static intialization of the Integer class
+//! \brief Performs static initialization of the Integer class
struct InitializeInteger
{
InitializeInteger();
@@ -610,7 +610,7 @@ public:
//! \returns 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 supress the suffix.
+ //! and \a \b 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>