Skip to content

Commit

Permalink
Merge pull request #136 from ptaoussanis/taoensso/hotfix
Browse files Browse the repository at this point in the history
[#135] Typo preventing use with Clojure 1.9+
  • Loading branch information
michaelklishin committed May 22, 2017
2 parents 9a62c4c + 74bd2ed commit 312ab9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clojure/clojurewerkz/cassaforte/query.clj
Expand Up @@ -94,7 +94,7 @@ Takes a table identifier and additional clause arguments:
* `key` - key to paginate on
* `last-key` - last seen value of the key, next chunk of results will contain all keys that follow that value
* `per-page` - how many results per page"
([& {:keys [key last-key per-page where] :or {:page 0}}]
([& {:keys [key last-key per-page where] :or {per-page 0}}]
{:limit per-page
:where (if last-key
(conj (vec where) [> key last-key])
Expand Down

0 comments on commit 312ab9a

Please sign in to comment.