summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authorayumin <ayumin@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-24 02:56:30 +0000
committerayumin <ayumin@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-24 02:56:30 +0000
commit7e76ab5e5e083d195647240580d1581f019396d3 (patch)
tree24eb05fb0d9556d2db35fda7810709cce6173f54 /string.c
parent7a1180c7457b9ac79d4fa37e296a74e0e6655f79 (diff)
* string.c (rb_str_prepend): Fix documentation for String#prepend.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34780 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/string.c b/string.c
index 2ce6504fe1..e3e5fb99ac 100644
--- a/string.c
+++ b/string.c
@@ -2147,9 +2147,9 @@ rb_str_concat(VALUE str1, VALUE str2)
*
* Prepend---Prepend the given string to <i>str</i>.
*
- * a = "world"
- * a.prepend("hello ") #=> "hello world"
- * a #=> "hello world"
+ * a = "world"
+ * a.prepend("hello ") #=> "hello world"
+ * a #=> "hello world"
*/
static VALUE