Skip to content

Commit d801386

Browse files
committed
fix Iterator.concat signature in docs
1 parent be66024 commit d801386

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2691,7 +2691,7 @@ core-js(-pure)/stage/3
26912691
Module [`esnext.iterator.concat`](https://github.com/zloirock/core-js/blob/master/packages/core-js/modules/esnext.iterator.concat.js)
26922692
```ts
26932693
class Iterator {
2694-
concat(...items: Array<IterableObject>): Iterator<any>;
2694+
static concat(...items: Array<IterableObject>): Iterator<any>;
26952695
}
26962696
```
26972697
[*CommonJS entry points:*](#commonjs-api)

docs/web/docs/features/proposals/iterator-sequencing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
## Built-ins signatures
99
```ts
1010
class Iterator {
11-
concat(...items: Array<IterableObject>): Iterator<any>;
11+
static concat(...items: Array<IterableObject>): Iterator<any>;
1212
}
1313
```
1414

0 commit comments

Comments
 (0)