From 55a65fd4e99c0f83f66aeb1ee9f8aef463e92fd2 Mon Sep 17 00:00:00 2001 From: aamine Date: Wed, 17 Jul 2002 21:49:40 +0000 Subject: [PATCH] * parse.y (yylex): fix typo. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2648 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 +++++- parse.y | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index d222a907c5..9fd5895bb8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,10 @@ +Thu Jul 18 06:51:24 2002 Minero Aoki + + * parse.y (yylex): fix typo. + Mon Jul 15 10:35:35 2002 Minero Aoki - * parse.y (heredoc_identifier): modify typo. + * parse.y (heredoc_identifier): fix typo. Sat Jul 13 09:30:04 2002 Nobuyoshi Nakada diff --git a/parse.y b/parse.y index c0b9bbe161..14e38347cf 100644 --- a/parse.y +++ b/parse.y @@ -3417,7 +3417,7 @@ yylex() } pushback(c); if (IS_ARG() && space_seen && !ISSPACE(c)){ - rb_warning("`&' interpeted as argument prefix"); + rb_warning("`&' interpreted as argument prefix"); c = tAMPER; } else if (lex_state == EXPR_BEG || lex_state == EXPR_MID) {