Skip to content

Commit 7608b52

Browse files
committed
fix #58
1 parent f505b85 commit 7608b52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/compile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ async function compile(docs: CurrentFile[], flags?: string): Promise<any> {
7171
if (data.status && data.status.errors && data.status.errors.length) {
7272
throw new Error(`${info}Compile error`);
7373
} else if (!config("suppressCompileMessages")) {
74-
vscode.window.showInformationMessage(`${info}Compile successed`, "Hide");
74+
vscode.window.showInformationMessage(`${info}Compilation succeeded`, "Hide");
7575
}
7676
return docs;
7777
})

0 commit comments

Comments
 (0)