From b489259a348741307a53df56b43a283a0e78381c Mon Sep 17 00:00:00 2001 From: Maxime Robert Date: Mon, 6 Nov 2017 20:28:39 +0100 Subject: [PATCH] docs(common): fix mis-ordered lines (#20221) --- packages/common/src/pipes/number_pipe.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/common/src/pipes/number_pipe.ts b/packages/common/src/pipes/number_pipe.ts index 0a69adc105..906bfdb76d 100644 --- a/packages/common/src/pipes/number_pipe.ts +++ b/packages/common/src/pipes/number_pipe.ts @@ -108,8 +108,8 @@ export class PercentPipe implements PipeTransform { * - `code`(default): use code (e.g. `USD`). * - `symbol`: use symbol (e.g. `$`). * - `symbol-narrow`: some countries have two symbols for their currency, one regular and one - * - boolean (deprecated from v5): `true` for symbol and false for `code` * 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` * If there is no narrow symbol for the chosen currency, the regular symbol will be used. * - `digitInfo` See {@link DecimalPipe} for detailed description. * - `locale` is a `string` defining the locale to use (uses the current {@link LOCALE_ID} by