Fix capitalization
This commit is contained in:
@@ -185,12 +185,12 @@ based on the file at `path`.
|
|||||||
(defmacro check-box!
|
(defmacro check-box!
|
||||||
"Calls a single method on a `check-box`."
|
"Calls a single method on a `check-box`."
|
||||||
[entity k & options]
|
[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?
|
(defn check-box?
|
||||||
"Returns true if `entity` is a `check-box`."
|
"Returns true if `entity` is a `check-box`."
|
||||||
[entity]
|
[entity]
|
||||||
(isa? (type (u/get-obj entity :object)) Checkbox))
|
(isa? (type (u/get-obj entity :object)) CheckBox))
|
||||||
|
|
||||||
; container
|
; container
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user