summaryrefslogtreecommitdiff
path: root/secblock.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2021-04-09 12:32:19 -0400
committerJeffrey Walton <noloader@gmail.com>2021-04-09 12:32:19 -0400
commit0af5b86ce746656901501edcbf73c9749b861134 (patch)
tree5e56d90bb8f1f34101d764a81cd2bd954e647997 /secblock.h
parentd90f9aadd976b433ad8ad3a6f3e7fd5563936afe (diff)
downloadcryptopp-git-0af5b86ce746656901501edcbf73c9749b861134.tar.gz
Update documentation for SecBlock
Diffstat (limited to 'secblock.h')
-rw-r--r--secblock.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/secblock.h b/secblock.h
index 1f11354e..41dc54f9 100644
--- a/secblock.h
+++ b/secblock.h
@@ -938,7 +938,7 @@ public:
/// \throw InvalidArgument if resulting size would overflow
/// \details The array pointed to by <tt>ptr</tt> must be distinct
/// from this SecBlock because Append() calls Grow() and memcpy.
- /// \details Internally, this SecBlock calls Grow and then appends t.
+ /// \details Internally, this SecBlock calls Grow() and then appends t.
/// \details Append() may be less efficient than a ByteQueue because
/// Append() must Grow() the internal array and then copy elements.
/// The ByteQueue can copy elements without growing.
@@ -959,7 +959,7 @@ public:
/// \brief Append contents from another SecBlock
/// \param t the other SecBlock
/// \throw InvalidArgument if resulting size would overflow
- /// \details Internally, this SecBlock calls Grow and then appends t.
+ /// \details Internally, this SecBlock calls Grow() and then appends t.
/// \details Append() may be less efficient than a ByteQueue because
/// Append() must Grow() the internal array and then copy elements.
/// The ByteQueue can copy elements without growing.
@@ -990,7 +990,7 @@ public:
/// \param count the number of values to copy
/// \param value the value, repeated count times
/// \throw InvalidArgument if resulting size would overflow
- /// \details Internally, this SecBlock calls Grow and then appends value.
+ /// \details Internally, this SecBlock calls Grow() and then appends value.
/// \details Append() may be less efficient than a ByteQueue because
/// Append() must Grow() the internal array and then copy elements.
/// The ByteQueue can copy elements without growing.