Skip to content

Commit

Permalink
Fix some typos
Browse files Browse the repository at this point in the history
Co-authored-by: mountdisk <mountdisk@icloud.com.>
  • Loading branch information
sebastinez and mountdisk committed Sep 3, 2024
1 parent 5fb6b3e commit 900506b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export default [
"warn",
{ default: ["field", "signature", "constructor", "method"] },
],
// Allow explict type annotations for additional clarity.
// Allow explicit type annotations for additional clarity.
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-invalid-void-type": ["warn"],
// Disallow Unused Variables.
Expand Down
2 changes: 1 addition & 1 deletion src/views/repos/Patch.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
node: baseUrl,
patch: patch.id,
} as const;
// For cleaner URLs, we omit the the revision part when we link to the
// For cleaner URLs, we omit the revision part when we link to the
// latest revision.
const latestRevisionId = patch.revisions[patch.revisions.length - 1].id;
const revision = latestRevisionId === revisionId ? undefined : revisionId;
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/clipboard.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ test("copy to clipboard", async ({ page, browserName, context }) => {
if (browserName === "chromium") {
await context.grantPermissions(["clipboard-read", "clipboard-write"]);
} else if (browserName === "webkit") {
// We aren't able to programatically change the permissions in webkit.
// We aren't able to programmatically change the permissions in webkit.
test.skip();
}

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/theme.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test("default theme", async ({ page }) => {
}
});

test("theme persistance", async ({ page }) => {
test("theme persistence", async ({ page }) => {
await page.goto(sourceBrowsingFixture);
await expect(
page.getByRole("banner").getByRole("link", { name: "source-browsing" }),
Expand Down

0 comments on commit 900506b

Please sign in to comment.