From aa8742ae41e64368aca4e33731cb1b6d34578614 Mon Sep 17 00:00:00 2001 From: Nitish Awasthi Date: Thu, 20 Aug 2020 20:23:24 +0530 Subject: [PATCH] Typescript Language Specification amended (#40120) fixes #39185 --- doc/spec.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/spec.md b/doc/spec.md index 741d4f29cec..9b4ca80435a 100644 --- a/doc/spec.md +++ b/doc/spec.md @@ -903,7 +903,7 @@ namespace X { // Namespace named X } ``` -A name that denotes a value has an associated type (section [3](#3)) and can be referenced in expressions (section [4.3](#4.3)). A name that denotes a type can be used by itself in a type reference or on the right hand side of a dot in a type reference ([3.8.2](#3.8.2)). A name that denotes a namespace can be used one the left hand side of a dot in a type reference. +A name that denotes a value has an associated type (section [3](#3)) and can be referenced in expressions (section [4.3](#4.3)). A name that denotes a type can be used by itself in a type reference or on the right hand side of a dot in a type reference ([3.8.2](#3.8.2)). A name that denotes a namespace can be used on the left hand side of a dot in a type reference. When a name with multiple meanings is referenced, the context in which the reference occurs determines the meaning. For example: