summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2021-06-12 16:17:47 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2021-06-12 16:18:45 +0900
commiteaaa9148b532a60daf92dfde1c37530194f2060d (patch)
tree1b64b43acd3931b3bd40bcb61141ac46fd2f6ffb /src
parent96ad60b9aad6284695101e3578f8c326a564fcbd (diff)
downloadmruby-eaaa9148b532a60daf92dfde1c37530194f2060d.tar.gz
mruby-eaaa9148b532a60daf92dfde1c37530194f2060d.zip
readint.c: fixed typo.
Diffstat (limited to 'src')
-rw-r--r--src/readint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/readint.c b/src/readint.c
index 4478574fd..5fae222c2 100644
--- a/src/readint.c
+++ b/src/readint.c
@@ -5,7 +5,7 @@
/* mrb_int_read(): read mrb_int from a string (base 10 only) */
/* const char *p - string to read */
/* const char *e - end of string */
-/* char **endp - end of pased integer */
+/* char **endp - end of parsed integer */
/* if integer overflows, errno will be set to ERANGE */
/* also endp will be set to NULL on overflow */