when
calls should have at least 1 expression after the condition.
Examples:
; bad (when true) (when (some-func))
; good (when true (do-stuff)) (when (some-func) (do-stuff))
`when` calls should have at least 1 expression after the condition. Examples: ; bad (when true) (when (some-func)) ; good (when true (do-stuff)) (when (some-func) (do-stuff))
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close