From a645081bcd24b64ef2778974efc4545772434ab4 Mon Sep 17 00:00:00 2001 From: oakes Date: Sat, 15 Nov 2014 16:05:09 -0500 Subject: [PATCH] Add missing paren --- TUTORIAL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TUTORIAL.md b/TUTORIAL.md index 322140c..86eccc3 100644 --- a/TUTORIAL.md +++ b/TUTORIAL.md @@ -278,7 +278,7 @@ You can even call multiple methods in the same expression this way. For example: (let [entity (texture "Clojure-icon.gif")] (doto ^TextureRegion (:object entity) (.flip true false) - (.setRegion 0 0 100 100) + (.setRegion 0 0 100 100)) entity) ```