Skip to content

Commit

Permalink
CLJS-283: fix protocol & protocol method names in reducers/Cat
Browse files Browse the repository at this point in the history
  • Loading branch information
michalmarczyk authored and David Nolen committed May 29, 2012
1 parent 5d0e073 commit f454d4a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/cljs/clojure/core/reducers.cljs
Expand Up @@ -180,11 +180,11 @@

;;do not construct this directly, use cat
(deftype Cat [cnt left right]
clojure.lang.Counted
(count [_] cnt)
cljs.core/ICounted
(-count [_] cnt)

clojure.lang.Seqable
(seq [_] (concat (seq left) (seq right)))
cljs.core/ISeqable
(-seq [_] (concat (seq left) (seq right)))

cljs.core/IReduce
(-reduce [this f1] (-reduce this f1 (f1)))
Expand Down

0 comments on commit f454d4a

Please sign in to comment.