Merge pull request #123 from david-mitchell/patch-1

Fix typo.
Mohamed Hegazy
2017-05-05 10:40:25 -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 generats 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 an `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[]>;