vendor/node_modules/wisp/Readme.md in ruby-wisp-source-0.7.0 vs vendor/node_modules/wisp/Readme.md in ruby-wisp-source-0.8.0

- old
+ new

@@ -588,16 +588,15 @@ without such tradeoffs. ```clojure (defmacro -> [& operations] - (reduce-list - (rest operations) + (reduce (fn [form operation] (cons (first operation) (cons form (rest operation)))) - (first operations))) - + (first operations) + (rest operations))) (-> (open target :keypress) (filter enter-key?) (map get-input-text)