From 516107fd040867b5e72153ad743083796e4cdf39 Mon Sep 17 00:00:00 2001 From: Derek Date: Tue, 7 Nov 2017 09:42:38 -0800 Subject: [PATCH] docs(common): update default display value for CurrencyPipe (#20246) PR Close #20246 --- packages/common/src/pipes/number_pipe.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/common/src/pipes/number_pipe.ts b/packages/common/src/pipes/number_pipe.ts index 906bfdb76d..130e3a5384 100644 --- a/packages/common/src/pipes/number_pipe.ts +++ b/packages/common/src/pipes/number_pipe.ts @@ -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`