diff --git a/adev/src/content/guide/templates/pipes.md b/adev/src/content/guide/templates/pipes.md index 1ea151c0e3f..98caab3573b 100644 --- a/adev/src/content/guide/templates/pipes.md +++ b/adev/src/content/guide/templates/pipes.md @@ -138,7 +138,7 @@ The pipe operator has lower precedence than other binary operators, including `+ ```angular-html -{{ (firstName + lastName | uppercase }} +{{ firstName + lastName | uppercase }} ``` The pipe operator has higher precedence than the conditional (ternary) operator.