I think the docs for reify says a lot about how but misses the point for what "reify" does.
`
user=> (doc reify)
clojure.core/reify
([& opts+specs])
Macro
reify is a macro with the following structure:
(reify options specs)
...
`
Proposed: Add a definition of what reify does:
`
user=> (doc reify)
clojure.core/reify
([& opts+specs])
Macro
reify creates an anonymous instance implementing a protocol or interface.
reify is a macro with the following structure:
(reify options specs)
...
`
Patch: clj-2488-2.patch
Screened by: Alex Miller