1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fix typo in string.c [ci skip]

* string.c (rb_str_oct): [DOC] fix typo, hornored -> honored.
  [Fix GH-1379]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55378 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2016-06-11 06:02:46 +00:00
parent cfb2b14ddc
commit aaf8c09900
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Sat Jun 11 15:02:45 2016 Grant Hutchins <github@nertzy.com>
* string.c (rb_str_oct): [DOC] fix typo, hornored -> honored.
[Fix GH-1379]
Sat Jun 11 14:04:19 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/objspace/objspace_dump.c: generate valid JSON for dump_all.

View file

@ -8288,7 +8288,7 @@ rb_str_hex(VALUE str)
* "bad".oct #=> 0
* "0377bad".oct #=> 255
*
* If +str+ starts with <code>0</code>, radix indicators are hornored.
* If +str+ starts with <code>0</code>, radix indicators are honored.
* See Kernel#Integer.
*/