Merge pull request #2 from stikonas/master

Fix a typo in a comment.
This commit is contained in:
Jeremiah 2019-11-01 18:24:25 -04:00 committed by GitHub
commit 9b7c5c025f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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