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

@ -86,9 +86,9 @@ export class Toggle implements ComponentInterface {
/**
* Where to place the label relative to the input.
* `'start'`: The label will appear to the left of the toggle in LTR and to the right in RTL.
* `'end'`: The label will appear to the right of the toggle in LTR and to the left in RTL.
* `'fixed'`: The label has the same behavior as `'start'` except it also has a fixed width. Long text will be truncated with ellipses ("...").
* `"start"`: The label will appear to the left of the toggle in LTR and to the right in RTL.
* `"end"`: The label will appear to the right of the toggle in LTR and to the left in RTL.
* `"fixed"`: The label has the same behavior as `"start"` except it also has a fixed width. Long text will be truncated with ellipses ("...").
*/
@Prop() labelPlacement: 'start' | 'end' | 'fixed' = 'start';
@ -105,11 +105,11 @@ export class Toggle implements ComponentInterface {
/**
* How to pack the label and toggle within a line.
* `'start'`: The label and toggle will appear on the left in LTR and
* `"start"`: The label and toggle will appear on the left in LTR and
* on the right in RTL.
* `'end'`: The label and toggle will appear on the right in LTR and
* `"end"`: The label and toggle will appear on the right in LTR and
* on the left in RTL.
* `'space-between'`: The label and toggle will appear on opposite
* `"space-between"`: The label and toggle will appear on opposite
* ends of the line with space between the two elements.
*/
@Prop() justify: 'start' | 'end' | 'space-between' = 'space-between';