@@ -26,7 +26,7 @@ Tree.prototype.force = function () {
26
26
* @example
27
27
* // returns 'ab'
28
28
* import { from } from '@functional-data-structure/finger-tree' ;
29
- * import { Measures : { SIZE } } from '@aureooms/js- measure' ;
29
+ * import { Measures : { SIZE } } from '@functional-abstraction/ measure' ;
30
30
* let tree = from( SIZE , 'abc' ) ;
31
31
* tree = tree.takeUntil( measure => measure > 2 ) ;
32
32
* [ ...tree ].join('') ;
@@ -48,7 +48,7 @@ Tree.prototype.takeUntil = function (predicate) {
48
48
* @example
49
49
* // returns 'c'
50
50
* import { from } from '@functional-data-structure/finger-tree' ;
51
- * import { Measures : { SIZE } } from '@aureooms/js- measure' ;
51
+ * import { Measures : { SIZE } } from '@functional-abstraction/ measure' ;
52
52
* let tree = from( SIZE , 'abc' ) ;
53
53
* tree = tree.dropUntil( measure => measure > 2 ) ;
54
54
* [ ...tree ].join('') ;
@@ -68,7 +68,7 @@ Tree.prototype.dropUntil = function (predicate) {
68
68
* @example
69
69
* // returns 'abc123'
70
70
* import { from } from '@functional-data-structure/finger-tree' ;
71
- * import { Measures : { SIZE } } from '@aureooms/js- measure' ;
71
+ * import { Measures : { SIZE } } from '@functional-abstraction/ measure' ;
72
72
* let tree = from( SIZE , 'abc' ).append('123') ;
73
73
* [ ...tree ].join('') ;
74
74
*
@@ -87,7 +87,7 @@ Tree.prototype.append = function (iterable) {
87
87
* @example
88
88
* // returns '123abc'
89
89
* import { from } from '@functional-data-structure/finger-tree' ;
90
- * import { Measures : { SIZE } } from '@aureooms/js- measure' ;
90
+ * import { Measures : { SIZE } } from '@functional-abstraction/ measure' ;
91
91
* let tree = from( SIZE , 'abc' ).prepend('123') ;
92
92
* [ ...tree ].join('') ;
93
93
*
0 commit comments