]> gitweb.factorcode.org Git - factor.git/blobdiff - core/words/words.factor
Fix comments to be ! not #!.
[factor.git] / core / words / words.factor
index 5b4e1f871f02bca578c1c9d211aa8e64c5e56daf..71126cf933a2c95f644ab59aac6b2bd844ae3809 100644 (file)
@@ -61,9 +61,9 @@ TUPLE: undefined-word word ;
 : undefined ( -- * ) get-callstack caller undefined-word boa throw ;
 
 : undefined-def ( -- quot )
-    #! 'f' inhibits tail call optimization in non-optimizing
-    #! compiler, ensuring that we can pull out the caller word
-    #! above.
+    ! 'f' inhibits tail call optimization in non-optimizing
+    ! compiler, ensuring that we can pull out the caller word
+    ! above.
     [ undefined f ] ;
 
 PREDICATE: deferred < word def>> undefined-def = ;