]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/coroutines/coroutines.factor
Fix comments to be ! not #!.
[factor.git] / extra / coroutines / coroutines.factor
index 3038fea86994a12e1416b505f39090c7718310ec..eec83525e90113bbb3bd21fa2d7aa61ead5648cc 100644 (file)
@@ -21,9 +21,9 @@ TUPLE: coroutine resumecc exitcc originalcc ;
     [
         >>exitcc
         resumecc>> call( -- )
-        #! At this point, the coroutine quotation must have terminated
-        #! normally (without calling coyield, coreset, or coterminate).
-        #! This shouldn't happen.
+        ! At this point, the coroutine quotation must have terminated
+        ! normally (without calling coyield, coreset, or coterminate).
+        ! This shouldn't happen.
         f over
     ] callcc1 2nip ;