From cccd5cdc4ab8d93e73fbbd7a8a404c7cb98caaec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Mon, 28 Oct 2019 00:51:42 +0000 Subject: [PATCH] Fix a typo in a comment. --- functions/numerate_number.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/numerate_number.c b/functions/numerate_number.c index 6725ba4..e08b76b 100644 --- a/functions/numerate_number.c +++ b/functions/numerate_number.c @@ -154,7 +154,7 @@ int numerate_string(char *a) { return set_reader("0123456789ABCDEFabcdef", 16, a+2); } - /* Deal with ocal */ + /* Deal with octal */ else if('0' == a[0]) { return set_reader("01234567", 8, a+1);