docs(common): update default display value for CurrencyPipe (#20246)

PR Close #20246
This commit is contained in:
Derek 2017-11-07 09:42:38 -08:00 committed by Jason Aden
parent b55c2ba342
commit 401ead07b8
1 changed files with 2 additions and 2 deletions

View File

@ -105,8 +105,8 @@ export class PercentPipe implements PipeTransform {
* - `currencyCode` is the [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) currency code, such
* as `USD` for the US dollar and `EUR` for the euro.
* - `display` indicates whether to show the currency symbol or the code.
* - `code`(default): use code (e.g. `USD`).
* - `symbol`: use symbol (e.g. `$`).
* - `code`: use code (e.g. `USD`).
* - `symbol`(default): use symbol (e.g. `$`).
* - `symbol-narrow`: some countries have two symbols for their currency, one regular and one
* narrow (e.g. the canadian dollar CAD has the symbol `CA$` and the symbol-narrow `$`).
* - boolean (deprecated from v5): `true` for symbol and false for `code`