Skip to content

Commit 4c20251

Browse files
docs: fix typos in Herebyfile.mjs and eslint rule comment
1 parent 71586ad commit 4c20251

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Herebyfile.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -649,13 +649,13 @@ const copyBuiltLocalDiagnosticMessages = task({
649649

650650
export const otherOutputs = task({
651651
name: "other-outputs",
652-
description: "Builds miscelaneous scripts and documents distributed with the LKG",
652+
description: "Builds miscellaneous scripts and documents distributed with the LKG",
653653
dependencies: [typingsInstaller, watchGuard, generateTypesMap, copyBuiltLocalDiagnosticMessages],
654654
});
655655

656656
export const watchOtherOutputs = task({
657657
name: "watch-other-outputs",
658-
description: "Builds miscelaneous scripts and documents distributed with the LKG",
658+
description: "Builds miscellaneous scripts and documents distributed with the LKG",
659659
hiddenFromTaskList: true,
660660
dependencies: [watchTypingsInstaller, watchWatchGuard, generateTypesMap, copyBuiltLocalDiagnosticMessages],
661661
});

scripts/eslint/rules/argument-trivia.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ module.exports = createRule({
117117
const name = ts.unescapeLeadingUnderscores(expectedName);
118118
// If a parameter is unused, we prepend an underscore. Ignore this
119119
// so that we can switch between used and unused without modifying code,
120-
// requiring that arugments are tagged with the non-underscored name.
120+
// requiring that arguments are tagged with the non-underscored name.
121121
return name.startsWith("_") ? name.slice(1) : name;
122122
}
123123
}

0 commit comments

Comments
 (0)