From 8a2e63c87784a92e701893ccf520ee5078ab3cbf Mon Sep 17 00:00:00 2001 From: Shuaib Hasan Akib Date: Fri, 28 Aug 2026 08:43:19 +0600 Subject: [PATCH] docs: correct highlight index for pipe examples in README (cherry picked from commit 54f67e1318348f929326ffd3b40e8bc50cf92c38) --- .../learn-angular/steps/23-pipes-format-data/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/adev/src/content/tutorials/learn-angular/steps/23-pipes-format-data/README.md b/adev/src/content/tutorials/learn-angular/steps/23-pipes-format-data/README.md index 677b75be6a3..3dc6176cb38 100644 --- a/adev/src/content/tutorials/learn-angular/steps/23-pipes-format-data/README.md +++ b/adev/src/content/tutorials/learn-angular/steps/23-pipes-format-data/README.md @@ -24,7 +24,7 @@ Time to customize some pipe output: In `app.ts`, update the template to include parameter for the `decimal` pipe. -```angular-html {highlight:[3]} +```angular-html {highlight:[2]} template: ` ...
  • Number with "decimal" {{ num | number: '3.2-2' }}
  • ` @@ -38,7 +38,7 @@ NOTE: What's that format? The parameter for the `DecimalPipe` is called `digitsI Now, update the template to use the `date` pipe. -```angular-html {highlight:[3]} +```angular-html {highlight:[2]} template: ` ...
  • Date with "date" {{ birthday | date: 'medium' }}
  • ` @@ -52,7 +52,7 @@ For extra fun, try some different parameters for `date`. More information can be For your last task, update the template to use the `currency` pipe. -```angular-html {highlight:[3]} +```angular-html {highlight:[2]} template: ` ...
  • Currency with "currency" {{ cost | currency }}
  • `