Skip to content

Commit

Permalink
format: Fix some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
TDiazT committed Aug 20, 2024
1 parent 1078fb3 commit 248eda8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default class Client extends LanguageClient {
serverOptions,
clientOptions,
);
Client._channel.appendLine("VsCoq initialised");
Client._channel.appendLine("VsCoq initialized");
}

public static writeToVscoq2Channel(message: string) {
Expand Down
4 changes: 2 additions & 2 deletions client/src/utilities/versioning.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const checkVersion = (client: Client, context: ExtensionContext) => {
if (serverInfo !== undefined) {
const { name, version } = serverInfo;
Client.writeToVscoq2Channel(
"[Versioning] Intialized server " + name + " [" + version + "]",
"[Versioning] Initialized server " + name + " [" + version + "]",
);
if (!checkCompat(extensionVersion, version)) {
window.showErrorMessage(
Expand All @@ -30,7 +30,7 @@ export const checkVersion = (client: Client, context: ExtensionContext) => {
}
} else {
Client.writeToVscoq2Channel(
"Could not run compatibility tests: failed to recieve initializeResult",
"Could not run compatibility tests: failed to receive initializeResult",
);
}
};
Expand Down

0 comments on commit 248eda8

Please # to comment.