Does anybody happen to know where 'clojuredocs' is defined? I grepped the clojure and leiningen git trees but the word didn't show up.
I noticed it mentioned in some leiningen tutorials and it's present in my REPL, in the user namespace.
clojuredocs
is a clojure.lang.Symbol
in namespace user:
{:interns #'user/clojuredocs, :maps-to #'user/clojuredocs, :interns-publicly #'user/clojuredocs}
#'user/clojuredocs
is a clojure.lang.Var
with metadata:
:arglists ([v] [ns-str var-str])
:ns #<Namespace user>
:name clojuredocs
:column 6300
:macro true
:line 1
:file "NO_SOURCE_PATH"
:doc
Lazily checks if the clojuredocs client is available, and uses it to
retrieve examples if it is.
with value #<exports$lazy_clojuredocs reply.exports$lazy_clojuredocs@5ce9f026>
of type reply.exports$lazy_clojuredocs