We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ecda60 commit 55bc311Copy full SHA for 55bc311
docs/iterators.md
@@ -11,7 +11,7 @@ interface Iterator<T> {
11
throw?(e?: any): IteratorResult<T>;
12
}
13
```
14
-([More on that `<T>` notation later](./types/generics.html))
+([More on that `<T>` notation later][generics])
15
This interface allows to retrieve a value from some collection or sequence
16
which belongs to the object.
17
@@ -194,3 +194,5 @@ with ES5 target as well if target JS engine supports `Symbol.iterator`.
194
This can be achieved by using ES6 lib with ES5 target
195
(add es6.d.ts to your project) to make it compile.
196
Compiled code should work in node 4+, Google Chrome and in some other browsers.
197
+
198
+[generics]: ./types/generics.md
0 commit comments