summaryrefslogtreecommitdiff
path: root/base64.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 /base64.h
parent06f79d904d5d4a801910e31bcca2846e5afbeaff (diff)
downloadcryptopp-git-5a5c6330735798ed7670cfe1d28986d0a88fb6a9.tar.gz
spelling fixes
Diffstat (limited to 'base64.h')
-rw-r--r--base64.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/base64.h b/base64.h
index 4fe26d03..93c8d7c6 100644
--- a/base64.h
+++ b/base64.h
@@ -20,7 +20,7 @@ public:
//! \brief Construct a Base64Encoder
//! \param attachment a BufferedTrasformation to attach to this object
//! \param insertLineBreaks a BufferedTrasformation to attach to this object
- //! \param maxLineLength the lenght of a line if line breaks are used
+ //! \param maxLineLength the length of a line if line breaks are used
//! \details Base64Encoder constructs a default encoder. The constructor lacks a parameter for padding, and you must
//! use IsolatedInitialize() to modify the Base64Encoder after construction.
//! \sa IsolatedInitialize() for an example of modifying an encoder after construction.
@@ -100,7 +100,7 @@ public:
//! \brief Construct a Base64URLEncoder
//! \param attachment a BufferedTrasformation to attach to this object
//! \param insertLineBreaks a BufferedTrasformation to attach to this object
- //! \param maxLineLength the lenght of a line if line breaks are used
+ //! \param maxLineLength the length of a line if line breaks are used
//! \details Base64URLEncoder() constructs a default encoder using a web safe alphabet. The constructor ignores
//! insertLineBreaks and maxLineLength because the web and URL safe specifications don't use them. They are
//! present in the constructor for API compatibility with Base64Encoder so it is a drop-in replacement. The