From d5f543183be86a4154966da16dcbd08845fd01af Mon Sep 17 00:00:00 2001 From: oakes Date: Sun, 19 Jan 2014 18:22:22 -0500 Subject: [PATCH] Remove unnecessary nil --- TUTORIAL.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/TUTORIAL.md b/TUTORIAL.md index 1209146..3ea0718 100644 --- a/TUTORIAL.md +++ b/TUTORIAL.md @@ -215,8 +215,7 @@ You may want to display two different screens at once. This is useful in situati (render! screen))) :on-resize (fn [screen entities] - (height! screen 300) - nil)) + (height! screen 300))) ``` Then, in `defgame`, set the screens in the order in which you'd like them to appear: