Given a form like this: ```clojure (is (= (pitch/hz->midi 7.95) 0)) ``` The thread commands do not correctly indent the resulting forms: ```clojure ;; crtf (thread-first-all) (-> 7.95 pitch/hz->midi (= 0) is) ;; crtl (thread-last-all) (->> 0 (= (pitch/hz->midi 7.95)) is) ;; crtt (thread-last) (->> (= (pitch/hz->midi 7.95) 0) is) ;; crth (thread) (-> (= (pitch/hz->midi 7.95) 0) is) ```