Commit b678ee7780970c5d6d1522d56efefbf84b4b7bd7

Steffen Jaeckel 2013-09-03T03:20:16

Merge pull request #17 from LBg/patch-2 Fix typo on comment

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/tommath.h b/tommath.h
index 1baff1f..71f07b4 100644
--- a/tommath.h
+++ b/tommath.h
@@ -269,7 +269,7 @@ int mp_mul_2d(mp_int *a, int b, mp_int *c);
 /* b = a*2 */
 int mp_mul_2(mp_int *a, mp_int *b);
 
-/* c = a mod 2**d */
+/* c = a mod 2**b */
 int mp_mod_2d(mp_int *a, int b, mp_int *c);
 
 /* computes a = 2**b */