Skip to content

Commit fd92c8e

Browse files
committed
Fix typos
1 parent 88181cf commit fd92c8e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

server/src/fallout.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -595,9 +595,9 @@ function sendDiagnostics(uri: string, outputText: string, tmpUri: string) {
595595
sendParseResult(parseResult, uri, tmpUri);
596596
}
597597

598-
let successfullCompilerPath: string | null = null;
598+
let successfulCompilerPath: string | null = null;
599599
async function checkExternalCompiler(compilePath: string) {
600-
if (compilePath === successfullCompilerPath) {
600+
if (compilePath === successfulCompilerPath) {
601601
// Check compiler only once
602602
return Promise.resolve(true);
603603
}
@@ -608,7 +608,7 @@ async function checkExternalCompiler(compilePath: string) {
608608
if (err) {
609609
resolve(false);
610610
} else {
611-
successfullCompilerPath = compilePath;
611+
successfulCompilerPath = compilePath;
612612
resolve(true);
613613
}
614614
});
@@ -700,7 +700,7 @@ export async function compile(
700700
}
701701
} else {
702702
if (interactive) {
703-
connection.window.showInformationMessage(`Succesfully compiled ${baseName}.`);
703+
connection.window.showInformationMessage(`Successfully compiled ${baseName}.`);
704704
}
705705
}
706706
sendDiagnostics(uri, stdout, tmpUri);

0 commit comments

Comments
 (0)