fixed comment

This commit is contained in:
Steffen Jaeckel 2012-11-19 14:56:34 +01:00
parent 63515f040f
commit 260133584a
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ int mp_read_radix (mp_int * a, const char *str, int radix)
/* process each digit of the string */
while (*str) {
/* if the radix < 36 the conversion is case insensitive
/* if the radix <= 36 the conversion is case insensitive
* this allows numbers like 1AB and 1ab to represent the same value
* [e.g. in hex]
*/