chore: format string values in comments with double quotes (#26857)

This commit is contained in:
Sean Perkins
2023-02-28 21:16:15 -05:00
committed by GitHub
parent ac66215399
commit 67578f6246
13 changed files with 121 additions and 121 deletions

View File

@@ -199,11 +199,11 @@ export class Datetime implements ComponentInterface {
}
/**
* Which values you want to select. `'date'` will show
* a calendar picker to select the month, day, and year. `'time'`
* Which values you want to select. `"date"` will show
* a calendar picker to select the month, day, and year. `"time"`
* will show a time picker to select the hour, minute, and (optionally)
* AM/PM. `'date-time'` will show the date picker first and time picker second.
* `'time-date'` will show the time picker first and date picker second.
* AM/PM. `"date-time"` will show the date picker first and time picker second.
* `"time-date"` will show the time picker first and date picker second.
*/
@Prop() presentation: DatetimePresentation = 'date-time';
@@ -296,7 +296,7 @@ export class Datetime implements ComponentInterface {
/**
* The locale to use for `ion-datetime`. This
* impacts month and day name formatting.
* The `'default'` value refers to the default
* The `"default"` value refers to the default
* locale set by your device.
*/
@Prop() locale = 'default';
@@ -440,11 +440,11 @@ export class Datetime implements ComponentInterface {
* a wheel picker where possible.
*
* A wheel picker can be rendered instead of a grid when `presentation` is
* one of the following values: `'date'`, `'date-time'`, or `'time-date'`.
* one of the following values: `"date"`, `"date-time"`, or `"time-date"`.
*
* A wheel picker will always be rendered regardless of
* the `preferWheel` value when `presentation` is one of the following values:
* `'time'`, `'month'`, `'month-year'`, or `'year'`.
* `"time"`, `"month"`, `"month-year"`, or `"year"`.
*/
@Prop() preferWheel = false;