aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-11-14 17:07:17 +0000
committerlloyd <[email protected]>2009-11-14 17:07:17 +0000
commit4649c8be4c12ade06cd2ff45582606e919b65ed2 (patch)
tree03704a3c473ae6a77f53b52cfc36777cef872b39 /src
parentee19c07adc0f881647d716cfdb07574987c0874d (diff)
Fix comment typo
Diffstat (limited to 'src')
-rw-r--r--src/fpe/fpe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fpe/fpe.cpp b/src/fpe/fpe.cpp
index ca018fa23..86e56625d 100644
--- a/src/fpe/fpe.cpp
+++ b/src/fpe/fpe.cpp
@@ -67,7 +67,7 @@ void factor(BigInt n, BigInt& a, BigInt& b)
* of rounds to use for FPE is 2+log_a(b). If a >= b then log_a(b) <= 1
* so 3 rounds is safe. The FPE factorization routine should always
* return a >= b, so just confirm that and return 3.
-* /
+*/
u32bit rounds(const BigInt& a, const BigInt& b)
{
if(a < b)