]> gitweb.factorcode.org Git - factor.git/blobdiff - core/checksums/checksums.factor
Fix comments to be ! not #!.
[factor.git] / core / checksums / checksums.factor
index d89b7a744a407474cc2fc1d16c58dd995b320d54..ce1c2a81d5535787fb9339d9b29016f1d548f7c1 100644 (file)
@@ -58,9 +58,9 @@ M: checksum checksum-lines
     [ B{ CHAR: \n } join ] dip checksum-bytes ;
 
 : checksum-file ( path checksum -- value )
-    #! normalize-path (file-reader) is equivalent to
-    #! binary <file-reader>. We use the lower-level form
-    #! so that we can move io.encodings.binary to basis/.
+    ! normalize-path (file-reader) is equivalent to
+    ! binary <file-reader>. We use the lower-level form
+    ! so that we can move io.encodings.binary to basis/.
     [ normalize-path (file-reader) ] dip checksum-stream ;
 
 : hex-string ( seq -- str )