diff --git a/src/wanijo/tag/forms.clj b/src/wanijo/tag/forms.clj index 4d918c4..c3eb4bd 100644 --- a/src/wanijo/tag/forms.clj +++ b/src/wanijo/tag/forms.clj @@ -6,8 +6,7 @@ (re-matches #".*\s.*" s)) (defn tag-names-from-input [s] - (->> (split s #",") - (map trim))) + (map trim (split s #","))) (defn any-tag-name-contains-whitespace [s] (some contains-whitespace? (tag-names-from-input s)))