diff options
author | lloyd <[email protected]> | 2010-03-13 08:55:11 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-13 08:55:11 +0000 |
commit | 44e019692ac51fbadef21537b10583cfb2d19de4 (patch) | |
tree | ee496109f7b34896a22f8224ab6e443ca02fed76 | |
parent | 6e54f05f0afe0bc7d37f30e3d15d0368a0482b7f (diff) |
Correct Doxygen comment
-rw-r--r-- | src/math/bigint/bigint.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/math/bigint/bigint.h b/src/math/bigint/bigint.h index 55ccf7aae..0bb51fd20 100644 --- a/src/math/bigint/bigint.h +++ b/src/math/bigint/bigint.h @@ -458,11 +458,11 @@ class BOTAN_DLL BigInt BigInt(RandomNumberGenerator& rng, u32bit bits); /** - * Create BigInt from unsigned 32 bit integer value and an - * also specify the sign of the value + * Create BigInt of specified size, all zeros + * @param sign the sign * @param n integer value */ - BigInt(Sign, u32bit n); + BigInt(Sign sign, u32bit n); /** * Create a number of the specified type and size |