1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

string.c: minor grammar fix [ci skip]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53509 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
duerst 2016-01-12 09:35:00 +00:00
parent 42b809f2ee
commit f23658f1c1
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Mon Jan 12 18:34:34 2016 Martin Duerst <duerst@it.aoyama.ac.jp>
* string.c: minor grammar fix [ci skip]
Mon Jan 12 16:09:09 2016 Martin Duerst <duerst@it.aoyama.ac.jp>
* test/ruby/enc/test_casing_options.rb: Tests for option

View file

@ -8600,7 +8600,7 @@ rb_str_b(VALUE str)
* call-seq:
* str.valid_encoding? -> true or false
*
* Returns true for a string which encoded correctly.
* Returns true for a string which is encoded correctly.
*
* "\xc2\xa1".force_encoding("UTF-8").valid_encoding? #=> true
* "\xc2".force_encoding("UTF-8").valid_encoding? #=> false