8000 Merge pull request #594 from cthogg/patch-3 · abhijit-hota/typescript-book@7b8761d · GitHub 8000
[go: up one dir, main page]

Skip to content

Commit 7b8761d

Browse files
authored
Merge pull request basarat#594 from cthogg/patch-3
fix broken generics link
2 parents 1dbe4ff + 55bc311 commit 7b8761d

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)
0