From 55b756de8b52bc9a5473a0b3f2e7a2ef07166f10 Mon Sep 17 00:00:00 2001 From: oakes Date: Wed, 8 Jan 2014 14:16:42 -0500 Subject: [PATCH] Don't duplicate constant values --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a4d67f3..d39e8cf 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ There are currently no tutorials or generated docs, because play-clj is changing (fn [screen entities] ; make the camera 20 tiles high, and adjust the width appropriately (let [height 20 - width (* 20 (/ (game :width) (game :height)))] + width (* height (/ (game :width) (game :height)))] (resize-camera! screen width height)) ; return the entities list unmodified entities))