diff --git a/ChangeLog b/ChangeLog index da17b01e1f..33fe6dc92c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Oct 23 00:22:20 2015 Josef Simanek + + * string.c (rb_str_tr): [DOC] Escape backslash in String#tr + documentation. [Fix GH-1063] + Fri Oct 23 00:19:04 2015 yui-knk * array.c (rb_ary_collect): [DOC] Fix space of code example of diff --git a/string.c b/string.c index 99f0c1e9f8..af744c7607 100644 --- a/string.c +++ b/string.c @@ -6106,7 +6106,7 @@ rb_str_tr_bang(VALUE str, VALUE src, VALUE repl) * "hello".tr('a-y', 'b-z') #=> "ifmmp" * "hello".tr('^aeiou', '*') #=> "*e**o" * - * The backslash character \ can be used to escape + * The backslash character \\ can be used to escape * ^ or - and is otherwise ignored unless it * appears at the end of a range or the end of the +from_str+ or +to_str+: *