From a53a85783d43f56c24c526ac9d1723dc63c09be5 Mon Sep 17 00:00:00 2001 From: Martyn Jones Date: Mon, 8 May 2017 15:03:23 +0100 Subject: [PATCH] Fix typo --- What's-new-in-TypeScript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;