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 }}
  • `