Commit 8d9df12800d7fbc6e03616180866de4d21e78639

Tim Gates 2020-12-19T19:09:57

docs: fix simple typo, exluding -> excluding There is a small typo in mp_to_radix.c. Should read `excluding` rather than `exluding`.

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);