Skip to content

Commit

Permalink
[clojurewerkz#135] Typo preventing use with Clojure 1.9+
Browse files Browse the repository at this point in the history
- Just guessing at the original intention here.
- Have yet to confirm that this is the *only* change necessary for 1.9+ support.
  • Loading branch information
Peter Taoussanis committed May 22, 2017
1 parent 6049a4c commit 85e6f93
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 85e6f93

Please sign in to comment.