Commit d014573ff8da5da5a6fcb76e01d170a0c852a105

Steffen Jaeckel 2020-12-20T12:49:11

Merge pull request #493 from timgates42/bugfix_typo_excluding docs: fix simple typo, exluding -> excluding

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/mp_to_radix.c b/mp_to_radix.c
index abf85c0..1e5e671 100644
--- a/mp_to_radix.c
+++ b/mp_to_radix.c
@@ -75,7 +75,7 @@ mp_err mp_to_radix(const mp_int *a, char *str, size_t maxlen, size_t *written, i
       ++digs;
    }
    /* reverse the digits of the string.  In this case _s points
-    * to the first digit [exluding the sign] of the number
+    * to the first digit [excluding the sign] of the number
     */
    s_reverse(_s, digs);