diff --git a/modules/angular2/docs/cheatsheet/template-syntax.md b/modules/angular2/docs/cheatsheet/template-syntax.md index f2ad7c7f91..4539e10789 100644 --- a/modules/angular2/docs/cheatsheet/template-syntax.md +++ b/modules/angular2/docs/cheatsheet/template-syntax.md @@ -77,4 +77,4 @@ Transforms the current value of expression `cardNumber` via the pipe called `myC syntax: `

Employer: {{employer?.companyName}}

`|`{{employer?.companyName}}` description: -The Elvis operator (`?`) means that the `employer` field is optional and if `undefined`, the rest of the expression should be ignored. +The safe navigation operator (`?`) means that the `employer` field is optional and if `undefined`, the rest of the expression should be ignored.