You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These are categorized as Var by get-docs-map, but is there a way they could instead be categorized as Function? clj-http.core/proxy-delete-with-body and proxy-get-with-body. It looks like the extension of the docsmap protocol for type clojure.lang.Var in clj-info's doc2map.clj is categorizing those as Vars rather than Functions because either they have no metadata, or if they do, their metadata has no value for the key :arglists.
The text was updated successfully, but these errors were encountered:
The issue is that proxy-delete-with-body is defined with a def:
(def proxy-delete-with-body (make-proxy-method-with-body :delete))
and the meta-map doesn't give any info about the arity.
I noticed that the issue-form eats anything that resembles html pointy brackets :-(
I was pinging out in the previous reply that proxy-delete-with-body is both a "fn" and "fin" but not "defn" because it lost the arty info in the meta-map.
These are categorized as Var by get-docs-map, but is there a way they could instead be categorized as Function? clj-http.core/proxy-delete-with-body and proxy-get-with-body. It looks like the extension of the docsmap protocol for type clojure.lang.Var in clj-info's doc2map.clj is categorizing those as Vars rather than Functions because either they have no metadata, or if they do, their metadata has no value for the key :arglists.
The text was updated successfully, but these errors were encountered: