ruby-changes:9172
From: yugui <ko1@a...>
Date: Sat, 13 Dec 2008 10:59:36 +0900 (JST)
Subject: [ruby-changes:9172] Ruby:r20710 (ruby_1_9_1): merges r20684 from trunk into ruby_1_9_1.
yugui 2008-12-13 10:59:26 +0900 (Sat, 13 Dec 2008) New Revision: 20710 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=20710 Log: merges r20684 from trunk into ruby_1_9_1. must be typos. Modified files: branches/ruby_1_9_1/parse.y Index: ruby_1_9_1/parse.y =================================================================== --- ruby_1_9_1/parse.y (revision 20709) +++ ruby_1_9_1/parse.y (revision 20710) @@ -57,11 +57,11 @@ enum lex_state_e { EXPR_BEG, /* ignore newline, +/- is a sign. */ - EXPR_END, /* newline significant, +/- is a operator. */ + EXPR_END, /* newline significant, +/- is an operator. */ EXPR_ENDARG, /* ditto, and unbound braces. */ - EXPR_ARG, /* newline significant, +/- is a operator. */ - EXPR_CMDARG, /* newline significant, +/- is a operator. */ - EXPR_MID, /* newline significant, +/- is a operator. */ + EXPR_ARG, /* newline significant, +/- is an operator. */ + EXPR_CMDARG, /* newline significant, +/- is an operator. */ + EXPR_MID, /* newline significant, +/- is an operator. */ EXPR_FNAME, /* ignore newline, no reserved words. */ EXPR_DOT, /* right after `.' or `::', no reserved words. */ EXPR_CLASS, /* immediate after `class', no here document. */ @@ -10125,7 +10125,7 @@ * Ripper.new(src, filename="(ripper)", lineno=1) -> ripper * * Create a new Ripper object. - * _src_ must be a String, a IO, or an Object which has #gets method. + * _src_ must be a String, an IO, or an Object which has #gets method. * * This method does not starts parsing. * See also Ripper#parse and Ripper.parse. -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/