Add missing paren

This commit is contained in:
oakes
2014-11-15 16:05:09 -05:00
parent 18bd71ec52
commit a645081bcd

View File

@@ -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)
```