Skip to content

Commit 58b2d2d

Browse files
committed
Typo
1 parent 2cc4990 commit 58b2d2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/src/codeActions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ export let findCodeActionsInDiagnosticsMessage = ({
151151
diagnosticMessage.forEach((line, index, array) => {
152152
// Because of how actions work, there can only be one per diagnostic. So,
153153
// halt whenever a code action has been found.
154-
let codeActionEtractors = [
154+
let codeActionExtractors = [
155155
simpleTypeMismatches,
156156
didYouMeanAction,
157157
addUndefinedRecordFieldsV10,
@@ -162,7 +162,7 @@ export let findCodeActionsInDiagnosticsMessage = ({
162162
wrapInSome,
163163
];
164164

165-
for (let extractCodeAction of codeActionEtractors) {
165+
for (let extractCodeAction of codeActionExtractors) {
166166
let didFindAction = false;
167167

168168
try {

0 commit comments

Comments
 (0)