aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--string.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 33b36162d2..69fee132ac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/string.c b/string.c
index eb02189dd8..8877c11ba6 100644
--- a/string.c
+++ b/string.c
@@ -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.
*/