From 76fb6545a5c732e53470e9367498c3fd599b14b9 Mon Sep 17 00:00:00 2001 From: Tycho Grouwstra Date: Wed, 16 Aug 2017 11:49:24 -0700 Subject: [PATCH] fix some copy-pasting error (#17766) * fix some copy-pasting error * update to reflect @ahejlsberg's feedback --- src/compiler/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/types.ts b/src/compiler/types.ts index faaed779955..efcf747e88c 100644 --- a/src/compiler/types.ts +++ b/src/compiler/types.ts @@ -3136,7 +3136,7 @@ namespace ts { /* @internal */ ContainsObjectLiteral = 1 << 22, // Type is or contains object literal type /* @internal */ - ContainsAnyFunctionType = 1 << 23, // Type is or contains object literal type + ContainsAnyFunctionType = 1 << 23, // Type is or contains the anyFunctionType NonPrimitive = 1 << 24, // intrinsic object type /* @internal */ JsxAttributes = 1 << 25, // Jsx attributes type