summaryrefslogtreecommitdiff
path: root/ecp.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 /ecp.h
parent4d2b58c8fe92e7ce5007d2f15f046d33f37eedc2 (diff)
downloadcryptopp-git-ac6987f3aee8fedd52a08f8d6e9b7d5ad28559bb.tar.gz
Use \return and \throw consitently in the docs
Diffstat (limited to 'ecp.h')
-rw-r--r--ecp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ecp.h b/ecp.h
index f7c919aa..a5bdcd94 100644
--- a/ecp.h
+++ b/ecp.h
@@ -67,7 +67,7 @@ public:
/// \brief Compare two points
/// \param P the first point
/// \param Q the second point
- /// \returns true if equal, false otherwise
+ /// \return true if equal, false otherwise
bool Equal(const Point &P, const Point &Q) const;
const Point& Identity() const;
@@ -150,7 +150,7 @@ public:
}
/// \brief Get the elliptic curve
- /// \returns ECP curve
+ /// \return ECP curve
/// \details GetCurve() is not inherited
const ECP & GetCurve() const {return *m_ecOriginal;}