Skip to content

Commit c532c0e

Browse files
🧹 cleaning: Correct some old links.
1 parent ccc95a3 commit c532c0e

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
Finger trees for JavaScript.
99
See [docs](https://functional-data-structure.github.io/finger-tree).
10-
Parent is [@aureooms/js-persistent](https://github.com/make-github-pseudonymous-again/js-persistent).
10+
Parent is [@functional-data-structure/persistent](https://github.com/functional-data-structure/persistent).
1111

1212
data FingerTree x = Empty
1313
| Single x
@@ -73,7 +73,7 @@ The data structure is
7373
[fully persistent](https://en.wikipedia.org/wiki/Persistent_data_structure#Fully_persistent):
7474
All methods are pure functions that do not modify their object.
7575

76-
> The [parent project](https://github.com/make-github-pseudonymous-again/js-persistent) shows how
76+
> The [parent project](https://github.com/functional-data-structure/persistent) shows how
7777
> specialized persistent data structures can be build on top of those methods.
7878
7979

@@ -107,7 +107,7 @@ const counter = {
107107
See also
108108
[@functional-abstraction/measure](https://functional-abstraction.github.io/measure/file/src/1-api/1-Measures.js.html)
109109
for more examples of measures and see
110-
[@aureooms/js-persistent](https://github.com/make-github-pseudonymous-again/js-persistent)
110+
[@functional-data-structure/persistent](https://github.com/functional-data-structure/persistent)
111111
for examples of data structures that can be build on top of this abstraction.
112112

113113

doc/manual/optimization.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -217,18 +217,18 @@ However, looking at the profiler output you will see:
217217

218218
```sh
219219
$ node-tick-processor isolate-0x2af4cf0-v8.log | grep '3:24'
220-
146 2.3% 2.4% LazyCompile: *get ~/sandbox/js-fingertree/js/dist/fingertree.js:3:24
221-
278 100.0% LazyCompile: *get ~/sandbox/js-fingertree/js/dist/fingertree.js:3:24
222-
6 100.0% LazyCompile: *get ~/sandbox/js-fingertree/js/dist/fingertree.js:3:24
223-
165 100.0% LazyCompile: *get ~/sandbox/js-fingertree/js/dist/fingertree.js:3:24
224-
97 99.0% LazyCompile: *get ~/sandbox/js-fingertree/js/dist/fingertree.js:3:24
225-
127 98.4% LazyCompile: *get ~/sandbox/js-fingertree/js/dist/fingertree.js:3:24
226-
163 100.0% LazyCompile: *get ~/sandbox/js-fingertree/js/dist/fingertree.js:3:24
227-
146 2.3% LazyCompile: *get ~/sandbox/js-fingertree/js/dist/fingertree.js:3:24
228-
138 100.0% LazyCompile: *get ~/sandbox/js-fingertree/js/dist/fingertree.js:3:24
229-
58 100.0% LazyCompile: *get ~/sandbox/js-fingertree/js/dist/fingertree.js:3:24
230-
129 100.0% LazyCompile: *get ~/sandbox/js-fingertree/js/dist/fingertree.js:3:24
231-
3 2.3% LazyCompile: *get ~/sandbox/js-fingertree/js/dist/fingertree.js:3:24
220+
146 2.3% 2.4% LazyCompile: *get ~/sandbox/finger-tree/js/dist/fingertree.js:3:24
221+
278 100.0% LazyCompile: *get ~/sandbox/finger-tree/js/dist/fingertree.js:3:24
222+
6 100.0% LazyCompile: *get ~/sandbox/finger-tree/js/dist/fingertree.js:3:24
223+
165 100.0% LazyCompile: *get ~/sandbox/finger-tree/js/dist/fingertree.js:3:24
224+
97 99.0% LazyCompile: *get ~/sandbox/finger-tree/js/dist/fingertree.js:3:24
225+
127 98.4% LazyCompile: *get ~/sandbox/finger-tree/js/dist/fingertree.js:3:24
226+
163 100.0% LazyCompile: *get ~/sandbox/finger-tree/js/dist/fingertree.js:3:24
227+
146 2.3% LazyCompile: *get ~/sandbox/finger-tree/js/dist/fingertree.js:3:24
228+
138 100.0% LazyCompile: *get ~/sandbox/finger-tree/js/dist/fingertree.js:3:24
229+
58 100.0% LazyCompile: *get ~/sandbox/finger-tree/js/dist/fingertree.js:3:24
230+
129 100.0% LazyCompile: *get ~/sandbox/finger-tree/js/dist/fingertree.js:3:24
231+
3 2.3% LazyCompile: *get ~/sandbox/finger-tree/js/dist/fingertree.js:3:24
232232
```
233233

234234
I didn't analyze much but it has to do with the way classes are handled by

0 commit comments

Comments
 (0)