diff --git a/aio/tools/transforms/templates/api/lib/paramList.html b/aio/tools/transforms/templates/api/lib/paramList.html index 10fb182c84..0f63ad32d9 100644 --- a/aio/tools/transforms/templates/api/lib/paramList.html +++ b/aio/tools/transforms/templates/api/lib/paramList.html @@ -21,11 +21,12 @@ {% if showType %}
{$ parameter.type $}
Type: {$ parameter.type $}
.
Type: {$ parameter.type $}
.
{minIntegerDigits}.{minFractionDigits}-{maxFractionDigits}
.
* - `minIntegerDigits` is the minimum number of integer digits to use. Defaults to `1`.
- * - `minFractionDigits` is the minimum number of digits after the decimal point. Defaults to `0`.
- * - `maxFractionDigits` is the maximum number of digits after the decimal point. Defaults to `3`.
+ * - `minFractionDigits` is the minimum number of digits after the decimal point. Defaults to
+ * `0`.
+ * - `maxFractionDigits` is the maximum number of digits after the decimal point. Defaults to
+ * `3`.
* @param locale a `string` defining the locale to use (uses the current {@link LOCALE_ID} by
* default).
*/
@@ -112,8 +114,8 @@ export class CurrencyPipe implements PipeTransform {
/**
*
* @param value a number to be formatted as currency.
- * @param currencyCodeis the [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) currency code, such
- * as `USD` for the US dollar and `EUR` for the euro.
+ * @param currencyCodeis the [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) currency code,
+ * such as `USD` for the US dollar and `EUR` for the euro.
* @param display indicates whether to show the currency symbol, the code or a custom value:
* - `code`: use code (e.g. `USD`).
* - `symbol`(default): use symbol (e.g. `$`).
diff --git a/packages/common/src/pipes/slice_pipe.ts b/packages/common/src/pipes/slice_pipe.ts
index d587190cbb..af86424e70 100644
--- a/packages/common/src/pipes/slice_pipe.ts
+++ b/packages/common/src/pipes/slice_pipe.ts
@@ -50,7 +50,8 @@ export class SlicePipe implements PipeTransform {
* in the list or string expression.
* - **a negative integer**: return the item at `start` index from the end and all items after
* in the list or string expression.
- * - **if positive and greater than the size of the expression**: return an empty list or string.
+ * - **if positive and greater than the size of the expression**: return an empty list or
+ * string.
* - **if negative and greater than the size of the expression**: return entire list or string.
* @param end the ending index of the subset to return:
* - **omitted**: return all items until the end.