]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/tetris/game/game.factor
Fix comments to be ! not #!.
[factor.git] / extra / tetris / game / game.factor
index e2b00d9b563d9a25999e0fdfc063df664048fecd..ae7db29539afda9fd593c5dd6b217a72c336ebb9 100644 (file)
@@ -86,7 +86,7 @@ CONSTANT: default-height 20
     [ drop board>> ] [ [ current-piece clone ] dip move-piece ] 2bi piece-valid? ;
 
 : tetris-move ( tetris move -- ? )
-    #! moves the piece if possible, returns whether the piece was moved
+    ! moves the piece if possible, returns whether the piece was moved
     2dup can-move? [
         [ current-piece ] dip move-piece drop t
     ] [