Skip to content

Commit 38f81dc

Browse files
authored
Meta: Fix typos discovered by codespell (#8284)
1 parent 3e851c9 commit 38f81dc

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ jobs:
6363
cache: npm
6464
- run: npm ci
6565
- run: npm run lint
66+
- uses: codespell-project/actions-codespell@v2
67+
with:
68+
ignore_words_list: eror,usera
69+
skip: '*.json'
6670

6771
Types:
6872
runs-on: ubuntu-latest

source/features/default-branch-button.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* TODO: Revert https://github.com/refined-github/refined-github/pull/7859 in March 2025 */
2-
/* The `details` version is for GHE. The `button` in the selector avoids a GHE conflict. `fuchsia` is to higlight broken styles. */
2+
/* The `details` version is for GHE. The `button` in the selector avoids a GHE conflict. `fuchsia` is to highlight broken styles. */
33
button.rgh-highlight-non-default-branch,
44
details.rgh-highlight-non-default-branch > summary {
55
background-color: var(

source/features/github-bugs.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ svg.octicon-package + a.Truncate[href*='/releases/download/'] > .Truncate-text {
112112
> .d-md-block
113113
> .js-socket-channel[data-url^='/notifications/beta/recent_notifications_alert']
114114
) {
115-
/* Substract 16px spacing from both .gap-3 and .ml-3 */
115+
/* Subtract 16px spacing from both .gap-3 and .ml-3 */
116116
margin-right: -32px;
117117
}
118118
}

source/features/global-conversation-list-filters.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import observe from '../helpers/selector-observer.js';
1111
function addLinks(container: HTMLElement): void {
1212
const defaultQuery = 'is:open archived:false';
1313

14-
// Without this, the Issues page also displays PRs, and viceversa
14+
// Without this, the Issues page also displays PRs, and vice-versa
1515
const isIssues = location.pathname.startsWith('/issues');
1616
const typeQuery = isIssues ? 'is:issue' : 'is:pr';
1717
const typeName = isIssues ? 'Issues' : 'Pull Requests';

0 commit comments

Comments
 (0)