Skip to content

Commit 55bc311

Browse files
authored
fix broken generics link
fix broken generics link
1 parent 3ecda60 commit 55bc311

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/iterators.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ interface Iterator<T> {
1111
throw?(e?: any): IteratorResult<T>;
1212
}
1313
```
14-
([More on that `<T>` notation later](./types/generics.html))
14+
([More on that `<T>` notation later][generics])
1515
This interface allows to retrieve a value from some collection or sequence
1616
which belongs to the object.
1717

@@ -194,3 +194,5 @@ with ES5 target as well if target JS engine supports `Symbol.iterator`.
194194
This can be achieved by using ES6 lib with ES5 target
195195
(add es6.d.ts to your project) to make it compile.
196196
Compiled code should work in node 4+, Google Chrome and in some other browsers.
197+
198+
[generics]: ./types/generics.md

0 commit comments

Comments
 (0)