summaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authoraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-07-15 01:33:36 +0000
committeraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-07-15 01:33:36 +0000
commit1419a57887987279bf33fc18cd394efa877d69c5 (patch)
treeb87827f72173a809f81b468cdfc7964cb640a5e9 /parse.y
parent657db05d72adf43a48bb891cf560cca719ee8320 (diff)
downloadruby-1419a57887987279bf33fc18cd394efa877d69c5.tar.gz
ruby-1419a57887987279bf33fc18cd394efa877d69c5.tar.xz
ruby-1419a57887987279bf33fc18cd394efa877d69c5.zip
* parse.y (heredoc_identifier): modify typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2647 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/parse.y b/parse.y
index d0dac69d9..c0b9bbe16 100644
--- a/parse.y
+++ b/parse.y
@@ -2957,12 +2957,12 @@ heredoc_identifier()
}
switch (c) {
case '\'':
- func |= str_squote; goto qutoed;
+ func |= str_squote; goto quoted;
case '"':
- func |= str_dquote; goto qutoed;
+ func |= str_dquote; goto quoted;
case '`':
func |= str_xquote;
- qutoed:
+ quoted:
newtok();
tokadd(func);
term = c;