From ae541d2fc48b34c158a123a6aa050d8ff7ec61e1 Mon Sep 17 00:00:00 2001 From: Nic Wilson Date: Fri, 18 Jan 2019 17:28:26 -0600 Subject: [PATCH] Fix typo (#27540) --- guide/english/typescript/any-type/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/typescript/any-type/index.md b/guide/english/typescript/any-type/index.md index 271cf59a2f..9b0714fa6f 100644 --- a/guide/english/typescript/any-type/index.md +++ b/guide/english/typescript/any-type/index.md @@ -4,7 +4,7 @@ title: Any Type # Any Type -The Any type instructs Typescript to suspend type checking for the specified variables. Useful when working with dynamic content for which you don't know the type, and for transitioning your codebase for Javascript to Typescript in pieces. You can use Javascript's implicit typing with variables declared with a type of Any. +The Any type instructs Typescript to suspend type checking for the specified variables. Useful when working with dynamic content for which you don't know the type, and for transitioning your codebase from Javascript to Typescript in pieces. You can use Javascript's implicit typing with variables declared with a type of Any. ```typescript let notSure: any = 4;