aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-09-14 10:49:29 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-09-14 10:49:29 +0000
commit9efc535733b59ce1d6c1636b60f03e1912633b1b (patch)
treebdd5a03249235874d2b06b3a5f99db781e5866f2 /parse.y
parent03352249c5bfc1f3c32b74f2a595ab918187228e (diff)
downloadruby-9efc535733b59ce1d6c1636b60f03e1912633b1b.tar.gz
parse.y: [DOC] fix call-seq [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59895 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y14
1 files changed, 7 insertions, 7 deletions
diff --git a/parse.y b/parse.y
index ccd760aa68..249aeca3b9 100644
--- a/parse.y
+++ b/parse.y
@@ -10937,7 +10937,7 @@ static VALUE ripper_parser_set_yydebug(VALUE self, VALUE flag);
/*
* call-seq:
- * ripper#error? -> Boolean
+ * ripper.error? -> Boolean
*
* Return true if parsed source has errors.
*/
@@ -10953,7 +10953,7 @@ ripper_error_p(VALUE vparser)
/*
* 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)
/*
* call-seq:
- * ripper#encoding -> encoding
+ * ripper.encoding -> encoding
*
* Return encoding of the source.
*/
@@ -11361,7 +11361,7 @@ ripper_ensure(VALUE parser_v)
/*
* call-seq:
- * ripper#parse
+ * ripper.parse
*
* Start parsing and returns the value of the root action.
*/
@@ -11388,7 +11388,7 @@ ripper_parse(VALUE self)
/*
* 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)
/*
* call-seq:
- * ripper#filename -> String
+ * ripper.filename -> String
*
* Return current parsing filename.
*/
@@ -11428,7 +11428,7 @@ ripper_filename(VALUE self)
/*
* call-seq:
- * ripper#lineno -> Integer
+ * ripper.lineno -> Integer
*
* Return line number of current parsing line.
* This number starts from 1.