From 5a63ceef8d48d5da8deade2d7122a0e51724cfed Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Fri, 3 Jun 2011 06:41:48 -0700 Subject: Fix a confusing comment in perly.y MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There’s no arrow there. --- perly.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perly.y') diff --git a/perly.y b/perly.y index 596426faae..a8adefb82c 100644 --- a/perly.y +++ b/perly.y @@ -816,7 +816,7 @@ subscripted: star '{' expr ';' '}' /* *main::{something} */ TOKEN_GETMAD($2,$$,'['); TOKEN_GETMAD($4,$$,']'); } - | scalar '{' expr ';' '}' /* $foo->{bar();} */ + | scalar '{' expr ';' '}' /* $foo{bar();} */ { $$ = newBINOP(OP_HELEM, 0, oopsHV($1), jmaybe($3)); PL_parser->expect = XOPERATOR; TOKEN_GETMAD($2,$$,'{'); -- cgit v1.2.1