]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/tetris/board/board.factor
Fix comments to be ! not #!.
[factor.git] / extra / tetris / board / board.factor
index b6239348ab339faf252ccdd97f160e731552362b..00ddda002150c00c85915cd2bd96697ad22281a1 100644 (file)
@@ -49,6 +49,6 @@ TUPLE: board { width integer } { height integer } rows ;
     [ [ row-not-full? ] filter ] change-rows ;
 
 : check-rows ( board -- n )
-    #! remove full rows, then add blank ones at the top, returning the number
-    #! of rows removed (and added)
+    ! remove full rows, then add blank ones at the top, returning the number
+    ! of rows removed (and added)
     remove-full-rows dup height>> over rows>> length - swap top-up-rows ;