]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/xml/elements/elements.factor
Fix comments to be ! not #!.
[factor.git] / basis / xml / elements / elements.factor
index 900b59b1a7d1b7bdb120fde9e6f8072668f431fa..8fcc19c540308bc3da4f54742b990ad200a94dd9 100644 (file)
@@ -18,7 +18,7 @@ IN: xml.elements
     [ quoteless-attr ] take-interpolated ;
 
 : start-tag ( -- name ? )
-    #! Outputs the name and whether this is a closing tag
+    ! Outputs the name and whether this is a closing tag
     get-char CHAR: / eq? dup [ next ] when
     parse-name swap ;