From d001ecc5a0e30f8f7ccf8d7d66b4b2f5f89a0e86 Mon Sep 17 00:00:00 2001 From: Keen Yee Liau Date: Wed, 18 Nov 2020 10:24:02 -0800 Subject: [PATCH] docs: fix confusing description for strictTemplates (#39745) This commit fixes a confusing description of the `strictTemplates` flag. > When `true`, enables strict template type checking in Angular version 9. This seems to imply that the flag is only available in one version. Strict template type checking is available in version 9 **and above**. PR Close #39745 --- aio/content/guide/angular-compiler-options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/angular-compiler-options.md b/aio/content/guide/angular-compiler-options.md index 33d6c91084..fc4f964f54 100644 --- a/aio/content/guide/angular-compiler-options.md +++ b/aio/content/guide/angular-compiler-options.md @@ -203,7 +203,7 @@ When you use the CLI command `ng new --strict`, it is set to `true` in the gener ### `strictTemplates` -When `true`, enables [strict template type checking](guide/template-typecheck#strict-mode) in Angular version 9. Strict mode is only available when using [Ivy](guide/ivy). +When `true`, enables [strict template type checking](guide/template-typecheck#strict-mode). Strict mode is only available when using [Ivy](guide/ivy) (Angular version 9 and later). Additional strictness flags allow you to enable and disable specific types of strict template type checking. See [troubleshooting template errors](guide/template-typecheck#troubleshooting-template-errors).