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

* parse.y (rb_parser_end_seen_p): fix documentation about return

value. patched by Sho Hashimoto. [Bug #4511]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32239 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2011-06-26 15:45:49 +00:00
parent 145fccbd42
commit 8d00a7c274
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Mon Jun 27 00:44:53 2011 NARUSE, Yui <naruse@ruby-lang.org>
* parse.y (rb_parser_end_seen_p): fix documentation about return
value. patched by Sho Hashimoto. [Bug #4511]
Mon Jun 27 00:40:47 2011 NARUSE, Yui <naruse@ruby-lang.org>
* hash.c (rb_hash_reject): add documentation that Hash#reject

View file

@ -10146,8 +10146,7 @@ rb_parser_new(void)
* call-seq:
* ripper#end_seen? -> Boolean
*
* Return if parsed source ended by +\_\_END\_\_+.
* This number starts from 1.
* Return true if parsed source ended by +\_\_END\_\_+.
*/
VALUE
rb_parser_end_seen_p(VALUE vparser)