From bfb119cc85776d38ee728d320605abcb3e52448e Mon Sep 17 00:00:00 2001 From: lloyd Date: Wed, 16 Jun 2010 04:03:10 +0000 Subject: Replace "@return a blah" and "@return the blah" with just "@return blah" --- src/math/bigint/bigint.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/math/bigint/bigint.h') diff --git a/src/math/bigint/bigint.h b/src/math/bigint/bigint.h index cd1aebf00..81defd201 100644 --- a/src/math/bigint/bigint.h +++ b/src/math/bigint/bigint.h @@ -220,7 +220,7 @@ class BOTAN_DLL BigInt /** * Return the word at a specified position of the internal register * @param n position in the register - * @return the value at position n + * @return value at position n */ word word_at(u32bit n) const { return ((n < size()) ? reg[n] : 0); } @@ -371,7 +371,7 @@ class BOTAN_DLL BigInt * @param rng a random number generator * @param min the minimum value * @param max the maximum value - * @return a random integer between min and max + * @return random integer between min and max */ static BigInt random_integer(RandomNumberGenerator& rng, const BigInt& min, -- cgit v1.2.3