diff options
Diffstat (limited to 'src/clojure/contrib/pprint/examples/show_doc.clj')
-rw-r--r-- | src/clojure/contrib/pprint/examples/show_doc.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clojure/contrib/pprint/examples/show_doc.clj b/src/clojure/contrib/pprint/examples/show_doc.clj index 77c73a24..6bf61585 100644 --- a/src/clojure/contrib/pprint/examples/show_doc.clj +++ b/src/clojure/contrib/pprint/examples/show_doc.clj @@ -37,7 +37,7 @@ #(vector (ns-name %) (map (fn [f] - (let [f-meta ^(find-var (symbol (str (ns-name %)) (str f)))] + (let [f-meta (meta (find-var (symbol (str (ns-name %)) (str f))))] [f (:arglists f-meta) (:doc f-meta)])) (filter (fn [a] (instance? clojure.lang.IFn a)) |