]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/parser-combinators/parser-combinators.factor
syntax: removing #! as a comment character.
[factor.git] / extra / parser-combinators / parser-combinators.factor
index 1958a5f6c09129c722ceed0c8266eace35d0cb1d..04d8efdc797c57791a46f3d89986097591c4fc06 100644 (file)
@@ -186,8 +186,8 @@ M: or-parser parse ( input parser1 -- list )
 
 TUPLE: sp-parser p1 ;
 
-#! Return a parser that first skips all whitespace before
-#! calling the original parser.
+! Return a parser that first skips all whitespace before
+! calling the original parser.
 C: sp sp-parser
 
 M: sp-parser parse ( input parser -- list )