From e7b3f1721a43467d11e40b98c6c42c5869e463f4 Mon Sep 17 00:00:00 2001 From: Coral Lee <3249977074@qq.com> Date: Wed, 12 Aug 2020 16:12:54 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E4=BF=AE=E6=94=B9=E8=AF=AD=E4=B9=89?= =?UTF-8?q?=E9=94=99=E8=AF=AF=EF=BC=8C=E9=98=B2=E6=AD=A2xx=E4=B8=8D?= =?UTF-8?q?=E8=A6=81xx?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aio/content/guide/template-syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/template-syntax.md b/aio/content/guide/template-syntax.md index de6ed3bf92..847604bf99 100644 --- a/aio/content/guide/template-syntax.md +++ b/aio/content/guide/template-syntax.md @@ -3625,7 +3625,7 @@ Angular 的非空断言运算符 `!` 在 Angular 模板中具有相同的目的 When the Angular compiler turns your template into TypeScript code, it prevents TypeScript from reporting that `item.color` might be `null` or `undefined`. -当 Angular 编译器把你的模板转换成 TypeScript 代码时,它会防止 TypeScript 不要报告此 `item.color` 可能为 `null` 或 `undefined` 的错误。 +当 Angular 编译器把你的模板转换成 TypeScript 代码时,它会防止 TypeScript 报告此 `item.color` 可能为 `null` 或 `undefined` 的错误。 Unlike the [_safe navigation operator_](guide/template-syntax#safe-navigation-operator "Safe navigation operator (?)"), the non-null assertion operator does not guard against `null` or `undefined`.