Skip to content

Commit 28ff3d5

Browse files
committed
chore: fix some spellings
1 parent c2b8f5a commit 28ff3d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vscode-client/languageclientsmanger.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ export class LanguageClientsManager {
610610
}
611611

612612
public async openUriInDocumentationView(uri: vscode.Uri): Promise<void> {
613-
const doc_uri = await this.convertToDocumententationUri(uri);
613+
const doc_uri = await this.convertToDocumentationUri(uri);
614614
if (doc_uri) {
615615
await vscode.commands.executeCommand("robotcode.showDocumentation", doc_uri.toString(true));
616616
} else {
@@ -621,7 +621,7 @@ export class LanguageClientsManager {
621621
}
622622
}
623623

624-
public async convertToDocumententationUri(
624+
public async convertToDocumentationUri(
625625
uri: vscode.Uri,
626626
token?: vscode.CancellationToken,
627627
): Promise<vscode.Uri | undefined> {

0 commit comments

Comments
 (0)