Skip to content

Commit 4eb6385

Browse files
committed
update old links
1 parent 9dc6659 commit 4eb6385

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ more information on how to contribute.
88

99
[Clojure contrib]: https://clojure.org/community/contrib_libs
1010
[Contributing]: https://clojure.org/community/contributing
11-
[JIRA]: http://dev.clojure.org/jira/browse/DIMAP
11+
[JIRA]: https://clojure.atlassian.net/browse/DIMAP
1212
[guidelines]: https://clojure.org/community/contrib_howto

README.md

+5-8
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ nil
2020

2121
These maps support transient/persistent semantics, and also provide special `merge`, `merge-with`, `update`, and `update!` methods that provide significantly faster performance than their normal Clojure counterparts. The elements must be in the range `[Long/MIN_VALUE, Long/MAX_VALUE]`. They can be used to represent normal maps which have integral keys, or sparse vectors.
2222

23-
The fact that int-maps are mergeable means that they can be used very effectively with Clojure's [reducer](http://clojure.com/blog/2012/05/08/reducers-a-library-and-model-for-collection-processing.html) mechanism. For instance, consider populating a data structure. Typically, we'd use `into`:
23+
The fact that int-maps are mergeable means that they can be used very effectively with Clojure's [reducer](https://clojure.org/news/2012/05/08/reducers) mechanism. For instance, consider populating a data structure. Typically, we'd use `into`:
2424

2525
```clj
2626
> (into {} [[1 2] [3 4]])
@@ -94,17 +94,14 @@ In this case, the dense int-set is much less efficient than the standard set, wh
9494
## Developer information
9595

9696
data.int-map is being developed as a Clojure Contrib project, see the
97-
[What is Clojure Contrib](http://dev.clojure.org/pages/viewpage.action?pageId=5767464)
97+
[What is Clojure Contrib](https://clojure.org/dev/contrib_libs)
9898
page for details. Patches will only be accepted from developers who
9999
have signed the Clojure Contributor Agreement.
100100

101101
* [GitHub project](https://github.com/clojure/data.int-map)
102-
103-
* [Bug Tracker](http://dev.clojure.org/jira/browse/DIMAP)
104-
105-
* [Continuous Integration](http://build.clojure.org/job/data.int-map/)
106-
107-
* [Compatibility Test Matrix](http://build.clojure.org/job/data.int-map-test-matrix/)
102+
* [Bug Tracker](https://clojure.atlassian.net/browse/DIMAP)
103+
* [Continuous Integration](https://build.clojure.org/job/data.int-map/)
104+
* [Compatibility Test Matrix](https://build.clojure.org/job/data.int-map-test-matrix/)
108105

109106
## License
110107

0 commit comments

Comments
 (0)