Skip to content

Commit 0349ab7

Browse files
authored
Fix typos everywhere (#1149)
1 parent a52fce4 commit 0349ab7

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

features/fetch-priority.dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Do not edit this file by hand. Edit the source file instead!
33

44
name: Fetch priority
5-
description: The `fetch()` `priority` option and the `fetchPriorty` HTML attribute give hints to the browser about which requests to do before other requests of the same type.
5+
description: The `fetch()` `priority` option and the `fetchPriority` HTML attribute give hints to the browser about which requests to do before other requests of the same type.
66
spec:
77
- https://fetch.spec.whatwg.org/#request-priority
88
- https://html.spec.whatwg.org/multipage/urls-and-fetching.html#fetch-priority-attributes

features/fetch-priority.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Fetch priority
2-
description: The `fetch()` `priority` option and the `fetchPriorty` HTML attribute give hints to the browser about which requests to do before other requests of the same type.
2+
description: The `fetch()` `priority` option and the `fetchPriority` HTML attribute give hints to the browser about which requests to do before other requests of the same type.
33
spec:
44
- https://fetch.spec.whatwg.org/#request-priority
55
- https://html.spec.whatwg.org/multipage/urls-and-fetching.html#fetch-priority-attributes

features/nth-child-of.dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Do not edit this file by hand. Edit the source file instead!
33

44
name: ":nth-child() of <selector>"
5-
description: "The `of` syntax for the `:nth-child()` and `:nth-last-child()` CSS functional pseudo-classess match elements by the relative position of elements, counted from the first or last sibling matching a selector list."
5+
description: "The `of` syntax for the `:nth-child()` and `:nth-last-child()` CSS functional pseudo-classes match elements by the relative position of elements, counted from the first or last sibling matching a selector list."
66
spec:
77
- https://drafts.csswg.org/selectors-4/#the-nth-child-pseudo
88
- https://drafts.csswg.org/selectors-4/#the-nth-last-child-pseudo

features/nth-child-of.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: ":nth-child() of <selector>"
2-
description: "The `of` syntax for the `:nth-child()` and `:nth-last-child()` CSS functional pseudo-classess match elements by the relative position of elements, counted from the first or last sibling matching a selector list."
2+
description: "The `of` syntax for the `:nth-child()` and `:nth-last-child()` CSS functional pseudo-classes match elements by the relative position of elements, counted from the first or last sibling matching a selector list."
33
spec:
44
- https://drafts.csswg.org/selectors-4/#the-nth-child-pseudo
55
- https://drafts.csswg.org/selectors-4/#the-nth-last-child-pseudo

features/permissions.dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ compat_features:
2121
- api.PermissionStatus
2222
# - api.PermissionStatus.change_event # TODO: later addition
2323
# - api.PermissionStatus.name # TODO: later addition
24-
- api.PermissionStatus.state # caniuse says this shipped in Chrome 43, but BCD (and now web-features) says Chrome 44 becuase it was under an old name in 43 (`status`)
24+
- api.PermissionStatus.state # caniuse says this shipped in Chrome 43, but BCD (and now web-features) says Chrome 44 because it was under an old name in 43 (`status`)
2525
- api.Permissions
2626
- api.Permissions.query

features/permissions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ compat_features:
77
- api.PermissionStatus
88
# - api.PermissionStatus.change_event # TODO: later addition
99
# - api.PermissionStatus.name # TODO: later addition
10-
- api.PermissionStatus.state # caniuse says this shipped in Chrome 43, but BCD (and now web-features) says Chrome 44 becuase it was under an old name in 43 (`status`)
10+
- api.PermissionStatus.state # caniuse says this shipped in Chrome 43, but BCD (and now web-features) says Chrome 44 because it was under an old name in 43 (`status`)
1111
- api.Permissions
1212
- api.Permissions.query

scripts/caniuse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if (process.argv.includes("--quiet")) {
1414
logger.add(new winston.transports.Console({ level: 'verbose' }));
1515
}
1616

17-
// Create a map from caniuse feature identifers to our identifiers, making
17+
// Create a map from caniuse feature identifiers to our identifiers, making
1818
// it possible to enumerate matched and unmatched features.
1919
const mapping = new Map<string, string | null>(
2020
Object.keys(lite.features).sort().map(id => [id, null])

scripts/release.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -404,8 +404,8 @@ function preflight(options: PreflightOptions): void {
404404

405405
if (head !== expectedRef) {
406406
// TODO: uncomment below, after we create a GitHub Actions workflow to run this script automatically
407-
// logger.error(`Starting banch is not ${expectedRef}`);
407+
// logger.error(`Starting branch is not ${expectedRef}`);
408408
// process.exit(1);
409-
logger.warn(`Starting banch is not ${expectedRef}`);
409+
logger.warn(`Starting branch is not ${expectedRef}`);
410410
}
411411
}

0 commit comments

Comments
 (0)