summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cryptlib.h2
-rw-r--r--iterhash.h2
-rw-r--r--tiger.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/cryptlib.h b/cryptlib.h
index 0eb0ef4c..f7bb58de 100644
--- a/cryptlib.h
+++ b/cryptlib.h
@@ -1219,7 +1219,7 @@ public:
/// \brief Computes the hash of the current message
/// \param digest a pointer to the buffer to receive the hash
/// \param digestSize the size of the truncated digest, in bytes
- /// \details TruncatedFinal() call Final() and then copies digestSize bytes to digest.
+ /// \details TruncatedFinal() calls Final() and then copies digestSize bytes to digest.
/// The hash is restarted the hash for the next message.
/// \pre <tt>COUNTOF(digest) <= DigestSize()</tt> or <tt>COUNTOF(digest) <= HASH::DIGESTSIZE</tt> ensures
/// the output byte buffer is a valid size.
diff --git a/iterhash.h b/iterhash.h
index 5a65b5ba..b6fe1cff 100644
--- a/iterhash.h
+++ b/iterhash.h
@@ -79,7 +79,7 @@ public:
/// \brief Computes the hash of the current message
/// \param digest a pointer to the buffer to receive the hash
/// \param digestSize the size of the truncated digest, in bytes
- /// \details TruncatedFinal() call Final() and then copies digestSize bytes to digest.
+ /// \details TruncatedFinal() calls Final() and then copies digestSize bytes to digest.
/// The hash is restarted the hash for the next message.
void TruncatedFinal(byte *digest, size_t digestSize);
diff --git a/tiger.h b/tiger.h
index 580d6ed6..4737dd92 100644
--- a/tiger.h
+++ b/tiger.h
@@ -48,7 +48,7 @@ public:
/// \brief Computes the hash of the current message
/// \param digest a pointer to the buffer to receive the hash
/// \param digestSize the size of the truncated digest, in bytes
- /// \details TruncatedFinal() call Final() and then copies digestSize bytes to digest.
+ /// \details TruncatedFinal() calls Final() and then copies digestSize bytes to digest.
/// The hash is restarted the hash for the next message.
void TruncatedFinal(byte *digest, size_t digestSize);