]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/locals/prettyprint/prettyprint.factor
Fix comments to be ! not #!.
[factor.git] / basis / locals / prettyprint / prettyprint.factor
index bd4bedad6a4f53f76fb61aadb3ba376e56e828f2..ac72801d91fc1cafc197e1a79e3f6a9ef8085d6b 100644 (file)
@@ -5,8 +5,8 @@ prettyprint.custom prettyprint.sections sequences words ;
 IN: locals.prettyprint
 
 : pprint-var ( var -- )
-    #! Prettyprint a read/write local as its writer, just like
-    #! in the input syntax: [| x! | ... x 3 + x! ]
+    ! Prettyprint a read/write local as its writer, just like
+    ! in the input syntax: [| x! | ... x 3 + x! ]
     dup local-reader? [
         "local-writer" word-prop
     ] when pprint-word ;