From e0b1ab662981ffd5c7de6753376edd2f79860b89 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 17 Mar 2021 17:57:24 -0400 Subject: [PATCH] Update comments --- cryptlib.h | 2 +- iterhash.h | 2 +- tiger.h | 2 +- 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 COUNTOF(digest) <= DigestSize() or COUNTOF(digest) <= HASH::DIGESTSIZE 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);