ruby-changes:47777
From: nobu <ko1@a...>
Date: Thu, 14 Sep 2017 19:49:39 +0900 (JST)
Subject: [ruby-changes:47777] nobu:r59895 (trunk): parse.y: [DOC] fix call-seq [ci skip]
nobu 2017-09-14 19:49:29 +0900 (Thu, 14 Sep 2017) New Revision: 59895 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=59895 Log: parse.y: [DOC] fix call-seq [ci skip] Modified files: trunk/parse.y Index: parse.y =================================================================== --- parse.y (revision 59894) +++ parse.y (revision 59895) @@ -10937,7 +10937,7 @@ static VALUE ripper_parser_set_yydebug(V https://github.com/ruby/ruby/blob/trunk/parse.y#L10937 /* * call-seq: - * ripper#error? -> Boolean + * ripper.error? -> Boolean * * Return true if parsed source has errors. */ @@ -10953,7 +10953,7 @@ ripper_error_p(VALUE vparser) https://github.com/ruby/ruby/blob/trunk/parse.y#L10953 /* * call-seq: - * ripper#end_seen? -> Boolean + * ripper.end_seen? -> Boolean * * Return true if parsed source ended by +\_\_END\_\_+. */ @@ -10968,7 +10968,7 @@ rb_parser_end_seen_p(VALUE vparser) https://github.com/ruby/ruby/blob/trunk/parse.y#L10968 /* * call-seq: - * ripper#encoding -> encoding + * ripper.encoding -> encoding * * Return encoding of the source. */ @@ -11361,7 +11361,7 @@ ripper_ensure(VALUE parser_v) https://github.com/ruby/ruby/blob/trunk/parse.y#L11361 /* * call-seq: - * ripper#parse + * ripper.parse * * Start parsing and returns the value of the root action. */ @@ -11388,7 +11388,7 @@ ripper_parse(VALUE self) https://github.com/ruby/ruby/blob/trunk/parse.y#L11388 /* * call-seq: - * ripper#column -> Integer + * ripper.column -> Integer * * Return column number of current parsing line. * This number starts from 0. @@ -11410,7 +11410,7 @@ ripper_column(VALUE self) https://github.com/ruby/ruby/blob/trunk/parse.y#L11410 /* * call-seq: - * ripper#filename -> String + * ripper.filename -> String * * Return current parsing filename. */ @@ -11428,7 +11428,7 @@ ripper_filename(VALUE self) https://github.com/ruby/ruby/blob/trunk/parse.y#L11428 /* * call-seq: - * ripper#lineno -> Integer + * ripper.lineno -> Integer * * Return line number of current parsing line. * This number starts from 1. -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/