Merge pull request #124 from MartynJones87/master

Fix typo
Mohamed Hegazy
2017-05-08 11:58:27 -07:00
committed by GitHub

@@ -114,7 +114,7 @@ TypeScript 2.3 adds support for declaring defaults for generic type parameters.
#### Example
Consider a function that creates a new `HTMLElement`, calling it with no arguments generates an `Div`; you can optionally pass a list of children as well. Previously you would have to define it as:
Consider a function that creates a new `HTMLElement`, calling it with no arguments generates a `Div`; you can optionally pass a list of children as well. Previously you would have to define it as:
```ts
declare function create(): Container<HTMLDivElement, HTMLDivElement[]>;