diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | string.c | 6 |
2 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Tue Aug 11 10:58:42 2015 Juanito Fatas <juanitofatas@gmail.com> + + * string.c: [DOC] Make #end_with? example doc symmetry + with #start_with? [fix GH-992][ci skip] + Tue Aug 11 10:51:19 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org> * test/ruby/test_array.rb: Add test for `Array#flatten` with level 1 @@ -8219,6 +8219,12 @@ rb_str_start_with(int argc, VALUE *argv, VALUE str) * str.end_with?([suffixes]+) -> true or false * * Returns true if +str+ ends with one of the +suffixes+ given. + * + * "hello".end_with?("ello") #=> true + * + * # returns true if one of the +suffixes+ matches. + * "hello".end_with?("heaven", "ello") #=> true + * "hello".end_with?("heaven", "paradise") #=> false */ static VALUE |