]> gitweb.factorcode.org Git - factor.git/blobdiff - core/kernel/kernel.factor
Fix comments to be ! not #!.
[factor.git] / core / kernel / kernel.factor
index bf8187636716598b3202e8688332b2ed199f104b..c38206198c8178fe2bda8f999a90956f8801eb75 100644 (file)
@@ -78,9 +78,9 @@ GENERIC: execute ( word -- )
 DEFER: if
 
 : ? ( ? true false -- true/false )
-    #! 'if' and '?' can be defined in terms of each other
-    #! because the JIT special-cases an 'if' preceeded by
-    #! two literal quotations.
+    ! 'if' and '?' can be defined in terms of each other
+    ! because the JIT special-cases an 'if' preceeded by
+    ! two literal quotations.
     rot [ drop ] [ nip ] if ; inline
 
 : if ( ..a ? true: ( ..a -- ..b ) false: ( ..a -- ..b ) -- ..b ) ? call ;