]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/http/http.factor
Fix comments to be ! not #!.
[factor.git] / basis / http / http.factor
index d1b99686406e4f4e2a7bba9e7d200b9835b1571d..9e1f6377cda35db42e6610b804b2ea7bf10b814b 100644 (file)
@@ -32,7 +32,7 @@ CONSTANT: max-redirects 10
     } cond ;
 
 : check-header-string ( str -- str )
-    #! http://en.wikipedia.org/wiki/HTTP_Header_Injection
+    ! http://en.wikipedia.org/wiki/HTTP_Header_Injection
     dup "\r\n" intersects?
     [ "Header injection attack" throw ] when ;