File tree 1 file changed +6
-7
lines changed
1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -94,18 +94,17 @@ itself (not its value) is returned. The reader macro #'x expands to (var x)."}})
94
94
(prn arglists))
95
95
(cond
96
96
special-form
97
- (do
98
- (println " Special Form" )
99
- (println " " doc)
100
- (if (contains? m :url )
101
- (when url
102
- (println (str " \n Please see http://clojure.org/" url)))
103
- (println (str " \n Please see http://clojure.org/special_forms#" nm))))
97
+ (println " Special Form" )
104
98
macro
105
99
(println " Macro" )
106
100
spec
107
101
(println " Spec" ))
108
102
(when doc (println " " doc))
103
+ (when special-form
104
+ (if (contains? m :url )
105
+ (when url
106
+ (println (str " \n Please see http://clojure.org/" url)))
107
+ (println (str " \n Please see http://clojure.org/special_forms#" nm))))
109
108
(when n
110
109
(when-let [fnspec (spec/get-spec (symbol (str (ns-name n)) (name nm)))]
111
110
(println " Spec" )
You can’t perform that action at this time.
0 commit comments