Skip to content

Commit

Permalink
[nop] Housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Dec 31, 2024
1 parent c567611 commit b9d8b95
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@

:dependencies
[[org.clojure/test.check "1.1.1"]
[org.clojure/core.async "1.6.681"]
[org.clojure/core.async "1.7.701"]
[thheller/shadow-cljs "2.28.20"]
[nrepl "1.3.0"]
[cider/cider-nrepl "0.50.3"]
Expand Down
4 changes: 2 additions & 2 deletions src/taoensso/encore.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@
- `start` may be -ive (=> index from right of vector).
- `end` is desired vector length, or `:max`."
{:added "Encore v3.126.0 (2024-10-23)"
:arglists '([v start-idx] [v start-idx end-idx] [v kind start end])}
:arglists '([v start-idx] [v start-idx end-idx] [v :by-len start end])}
(subfn `subvec core-subvec))

(def* substr
Expand All @@ -848,7 +848,7 @@
- `start` may be -ive (=> index from right of string).
- `end` is desired string length, or `:max`."
{:added "Encore v3.126.0 (2024-10-23)"
:arglists '([s start-idx] [s start-idx end-idx] [s kind start end])}
:arglists '([s start-idx] [s start-idx end-idx] [s :by-len start end])}
(subfn `substr (fn [s n1 n2] (.substring #?(:clj ^String s :cljs s) n1 n2))))

(comment
Expand Down

0 comments on commit b9d8b95

Please sign in to comment.