Use consistent wording

This commit is contained in:
oakes
2014-08-02 15:35:33 -04:00
parent 5a89eee201
commit 2e87bcc712

View File

@@ -1,7 +1,7 @@
(in-ns 'play-clj.core)
(defn find-first
"Finds the first entity in `entities` for which `match-fn` returns true.
"Returns the first entity in `entities` for which `match-fn` returns true.
(find-first :player? entities)
(find-first #(= :menu (:id %)) entities)"