summaryrefslogtreecommitdiff
path: root/gf2n.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 /gf2n.h
parent4d2b58c8fe92e7ce5007d2f15f046d33f37eedc2 (diff)
downloadcryptopp-git-ac6987f3aee8fedd52a08f8d6e9b7d5ad28559bb.tar.gz
Use \return and \throw consitently in the docs
Diffstat (limited to 'gf2n.h')
-rw-r--r--gf2n.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/gf2n.h b/gf2n.h
index 94f2c010..86cf3b4c 100644
--- a/gf2n.h
+++ b/gf2n.h
@@ -65,23 +65,23 @@ public:
{Randomize(rng, bitcount);}
/// \brief Provides x^i
- /// \returns x^i
+ /// \return x^i
static PolynomialMod2 CRYPTOPP_API Monomial(size_t i);
/// \brief Provides x^t0 + x^t1 + x^t2
- /// \returns x^t0 + x^t1 + x^t2
+ /// \return x^t0 + x^t1 + x^t2
static PolynomialMod2 CRYPTOPP_API Trinomial(size_t t0, size_t t1, size_t t2);
/// \brief Provides x^t0 + x^t1 + x^t2 + x^t3 + x^t4
- /// \returns x^t0 + x^t1 + x^t2 + x^t3 + x^t4
+ /// \return x^t0 + x^t1 + x^t2 + x^t3 + x^t4
static PolynomialMod2 CRYPTOPP_API Pentanomial(size_t t0, size_t t1, size_t t2, size_t t3, size_t t4);
/// \brief Provides x^(n-1) + ... + x + 1
- /// \returns x^(n-1) + ... + x + 1
+ /// \return x^(n-1) + ... + x + 1
static PolynomialMod2 CRYPTOPP_API AllOnes(size_t n);
/// \brief The Zero polinomial
- /// \returns the zero polynomial
+ /// \return the zero polynomial
static const PolynomialMod2 & CRYPTOPP_API Zero();
/// \brief The One polinomial
- /// \returns the one polynomial
+ /// \return the one polynomial
static const PolynomialMod2 & CRYPTOPP_API One();
//@}