Skip to content

Commit 4e545c6

Browse files
authored
Merge pull request #354 from gjsjohnmurray/fix-353
fix #353 Correct a spelling mistake in hover link
2 parents c69cd24 + 868d4ae commit 4e545c6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/providers/ObjectScriptClassFoldingRangeProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export class ObjectScriptClassFoldingRangeProvider implements vscode.FoldingRang
1212
const line = document.lineAt(i);
1313
const prevLine = i > 0 ? document.lineAt(i - 1) : { text: "" };
1414

15-
// Documenation block
15+
// Documentation block
1616
const docPattern = /\/{3}/;
1717
if (line.text.match(docPattern)) {
1818
const start = i;

src/providers/ObjectScriptHoverProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export class ObjectScriptHoverProvider implements vscode.HoverProvider {
9191

9292
public documentationLink(link: string): string | null {
9393
if (link) {
94-
return `[Online documenation](${
94+
return `[Online documentation](${
9595
link.startsWith("http") ? "" : "https://docs.intersystems.com/irislatest"
9696
}${link})`;
9797
}

0 commit comments

Comments
 (0)