Welcome! Please see the About page for a little more info on how this works.

0 votes
in Docs by
closed by

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

closed with the note: Fixed in 1.11.0-alpha3

2 Answers

0 votes
by

Comment made by: alexmiller

Added -2 patch with a small rewrite, retained attribution.

0 votes
by
Reference: https://clojure.atlassian.net/browse/CLJ-2488 (reported by alex+import)
...