]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/smtp/smtp.factor
Fix comments to be ! not #!.
[factor.git] / basis / smtp / smtp.factor
index 48ea2c181443c315d3bf9dfe82794f1581a7bef6..043d6d81dcc2612e68c427791858cd224fdd4b5b 100644 (file)
@@ -67,7 +67,7 @@ TUPLE: email
 ERROR: bad-email-address email ;
 
 : validate-address ( string -- string' )
-    #! Make sure we send funky stuff to the server by accident.
+    ! Make sure we send funky stuff to the server by accident.
     dup "\r\n>" intersects?
     [ bad-email-address ] when ;