summaryrefslogtreecommitdiff
path: root/padlkrng.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-12-07 23:35:10 -0500
committerJeffrey Walton <noloader@gmail.com>2020-12-07 23:35:10 -0500
commitac6987f3aee8fedd52a08f8d6e9b7d5ad28559bb (patch)
treea0f63ebf397db67a1d8f7e41f2e4e89d03a57a4f /padlkrng.h
parent4d2b58c8fe92e7ce5007d2f15f046d33f37eedc2 (diff)
downloadcryptopp-git-ac6987f3aee8fedd52a08f8d6e9b7d5ad28559bb.tar.gz
Use \return and \throw consitently in the docs
Diffstat (limited to 'padlkrng.h')
-rw-r--r--padlkrng.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/padlkrng.h b/padlkrng.h
index 7116dd3a..fda1d66b 100644
--- a/padlkrng.h
+++ b/padlkrng.h
@@ -100,7 +100,7 @@ public:
/// \brief Set the XSTORE divisor
/// \param divisor the XSTORE divisor
- /// \returns the old XSTORE divisor
+ /// \return the old XSTORE divisor
word32 SetDivisor(word32 divisor)
{
word32 old = m_divisor;
@@ -109,14 +109,14 @@ public:
}
/// \brief Get the XSTORE divisor
- /// \returns the current XSTORE divisor
+ /// \return the current XSTORE divisor
word32 GetDivisor() const
{
return m_divisor;
}
/// \brief Get the MSR for the last operation
- /// \returns the MSR for the last read operation
+ /// \return the MSR for the last read operation
word32 GetMSR() const
{
return m_msr;