fix String#lines comment; ref mattn@2e1855a

This commit is contained in:
Yukihiro "Matz" Matsumoto
2014-06-04 10:51:09 +09:00
parent 04962ca075
commit b01bb33b75
+1 -1
View File
@@ -199,7 +199,7 @@ mrb_str_chr(mrb_state *mrb, mrb_value self)
* Returns strings per line;
*
* a = "abc\ndef"
* a.lines #=> ["abc", "def"]
* a.lines #=> ["abc\n", "def"]
*/
static mrb_value
mrb_str_lines(mrb_state *mrb, mrb_value self)