Fix capitalization

This commit is contained in:
oakes
2014-05-04 18:57:42 -04:00
parent 073c7cda85
commit 05070cefa1

View File

@@ -185,12 +185,12 @@ based on the file at `path`.
(defmacro check-box!
"Calls a single method on a `check-box`."
[entity k & options]
`(u/call! ^Checkbox (u/get-obj ~entity :object) ~k ~@options))
`(u/call! ^CheckBox (u/get-obj ~entity :object) ~k ~@options))
(defn check-box?
"Returns true if `entity` is a `check-box`."
[entity]
(isa? (type (u/get-obj entity :object)) Checkbox))
(isa? (type (u/get-obj entity :object)) CheckBox))
; container