From 0af5b86ce746656901501edcbf73c9749b861134 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Fri, 9 Apr 2021 12:32:19 -0400 Subject: Update documentation for SecBlock --- secblock.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'secblock.h') 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 ptr 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. -- cgit v1.2.1