From 95356f723991ab82cc70e931473ff1f901b46607 Mon Sep 17 00:00:00 2001 From: Guilherme Lima Bernal Date: Mon, 2 Sep 2013 09:52:11 -0600 Subject: [PATCH] Fix typo on comment --- tommath.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */