Skip to content

Commit 4c880df

Browse files
Fix typos
1 parent ced9f60 commit 4c880df

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/codeql/queries/unique-command-use.ql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
* @problem.severity warning
55
* @id vscode-codeql/unique-command-use
66
* @description Using each VS Code command from only one location makes
7-
* our telemtry more useful because we can differentiate more user
8-
* interactions and know which features of the UI users are using.
7+
* our telemetry more useful, because we can differentiate more user
8+
* interactions and know which features of the UI our users are using.
99
* To fix this alert, new commands will need to be made so that each one
1010
* is only used from one location. The commands should share the same
1111
* implementation so we do not introduce duplicate code.
1212
* When fixing this alert, search the codebase for all other references
13-
* to the commnad name. The location of the alert is an arbitrarily
13+
* to the command name. The location of the alert is an arbitrarily
1414
* chosen usage of the command, and may not necessarily be the location
1515
* that should be changed to fix the alert.
1616
*/
@@ -75,7 +75,7 @@
7575

7676
/**
7777
* A usage of a command from any menu that isn't the command palette.
78-
* This means a user could invoke the command by clicking on a button in a
78+
* This means a user could invoke the command by clicking on a button in
7979
* something like a menu or a dropdown.
8080
*/
8181
class CommandUsagePackageJsonMenuItem extends CommandUsage, JsonObject {

0 commit comments

Comments
 (0)