Bug 1810211 - Follow-up: Fix whitespace lint. rs=mozlint a=rjl

--HG--
extra : rebase_source : 2eaa4c9ab2f79512aa8bb9439977349b29010eb7
This commit is contained in:
Rob Lemley 2023-01-16 09:24:11 -05:00
Родитель f5a59f0241
Коммит 412acbb783
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -38,7 +38,7 @@ are doing.
```xml
<radio id="calendar-day-view-button"
label="&calendar.day.button.label;"
label="&calendar.day.button.label;"
tooltiptext="&calendar.day.button.tooltip;" />
```
@ -96,7 +96,7 @@ Migrations are Python modules, and implement
a single `migrate(MigrationContext)` function. The `migrate()` function makes
calls into `MigrationContext.add_transforms()`.
The `add_transforms()` function takes three arguments:
The `add_transforms()` function takes three arguments:
- `target_path`: Path to the target l10n file
- `reference_path`: Path to the reference (en-US) file
- A list of Transforms
@ -104,7 +104,7 @@ The `add_transforms()` function takes three arguments:
```{note}
For Thunderbird migrations, the target and reference path are the same.
```
Transforms are rather dense AST nodes. See
[Transforms](https://firefox-source-docs.mozilla.org/l10n/migrations/overview.html#transforms)
for the exact details.

Просмотреть файл

@ -22,7 +22,7 @@ and the bug number in the commit message matches the migration name.
It will also show the diff between the migrated files and the reference, ignoring
blank lines.
You can inspect the generated repository further by looking in
You can inspect the generated repository further by looking in
`$OBJDIR/comm/python/l10n/bug_1805746_calendar_view/en-US`.
## During Review