Skip to content

Commit

Permalink
must be typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Watson1978 committed Jan 18, 2012
1 parent c2c2d44 commit d2b1ce5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions parse.y
Expand Up @@ -41,11 +41,11 @@ static inline void orig_free(void *ptr) { free(ptr); }

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. */
Expand Down Expand Up @@ -9946,7 +9946,7 @@ ripper_s_allocate(VALUE klass)
* 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.
Expand Down

0 comments on commit d2b1ce5

Please sign in to comment.