diff --git a/What's-new-in-TypeScript.md b/What's-new-in-TypeScript.md index 3bb3a29..df21a81 100644 --- a/What's-new-in-TypeScript.md +++ b/What's-new-in-TypeScript.md @@ -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;