You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2006/07/07 00:15:34 UTC

svn commit: r419725 - /geronimo/sandbox/gshell/trunk/gshell-core/src/main/grammar/SyntaxParser.jtb

Author: jdillon
Date: Thu Jul  6 15:15:34 2006
New Revision: 419725

URL: http://svn.apache.org/viewvc?rev=419725&view=rev
Log:
Fixed typo

Modified:
    geronimo/sandbox/gshell/trunk/gshell-core/src/main/grammar/SyntaxParser.jtb

Modified: geronimo/sandbox/gshell/trunk/gshell-core/src/main/grammar/SyntaxParser.jtb
URL: http://svn.apache.org/viewvc/geronimo/sandbox/gshell/trunk/gshell-core/src/main/grammar/SyntaxParser.jtb?rev=419725&r1=419724&r2=419725&view=diff
==============================================================================
--- geronimo/sandbox/gshell/trunk/gshell-core/src/main/grammar/SyntaxParser.jtb (original)
+++ geronimo/sandbox/gshell/trunk/gshell-core/src/main/grammar/SyntaxParser.jtb Thu Jul  6 15:15:34 2006
@@ -61,7 +61,7 @@
         CommandLine root = CommandLine();
         
         if (log.isDebugEnabled()) {
-            log.debug("Root node: " + node);
+            log.debug("Root node: " + root);
         }
         
         return root;
@@ -164,10 +164,10 @@
 
 void Argument() : {}
 {
-    String()
+    AnyString()
 }
 
-void String() : {}
+void AnyString() : {}
 {
     QuotedString() | QpaqueString() | PlainString()
 }