Skip to content

Commit 5734328

Browse files
author
soaringeagle
authored
Update iterators.md
I had no idea yet what the Generics notation was, luckily it's explained later so I added a reference
1 parent 8708504 commit 5734328

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/iterators.md

Lines changed: 1 addition & 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-
14+
([More on that `<T>` notation later](./types/generics.html))
1515
This interface allows to retrieve a value from some collection or sequence
1616
which belongs to the object.
1717

0 commit comments

Comments
 (0)