From 413f24d3b01ee6ceaf8b025cf64e05155689fdbe Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 4 Nov 2011 07:19:23 +0000 Subject: * whitespace cleanup. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33634 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- string.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'string.c') diff --git a/string.c b/string.c index 1cc41fea27..61703a7057 100644 --- a/string.c +++ b/string.c @@ -5233,14 +5233,14 @@ rb_str_tr_bang(VALUE str, VALUE src, VALUE repl) * call-seq: * str.tr(from_str, to_str) => new_str * - * Returns a copy of str with the characters in from_str - * replaced by the corresponding characters in to_str. If + * Returns a copy of str with the characters in from_str + * replaced by the corresponding characters in to_str. If * to_str is shorter than from_str, it is padded with its last * character in order to maintain the correspondence. * * "hello".tr('el', 'ip') #=> "hippo" * "hello".tr('aeiou', '*') #=> "h*ll*" - * + * * Both strings may use the c1-c2 notation to denote ranges of characters, * and from_str may start with a ^, which denotes all * characters except those listed. -- cgit v1.2.3