Skip to content

Commit fc9a30e

Browse files
authored
fixed date for v26.1.0 in changelog (#55)
* fixed date for v26.1.0 in changelog * fixed linting
1 parent f98c1ea commit fc9a30e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
This changelog relates to the VS Code Extension for the Mojo language. Changelogs for the Mojo project can be found at: [Mojo release changelog](https://docs.modular.com/mojo/changelog)
99

10-
## [26.1.0] - 2026-01-23
10+
## [26.1.0] - 2026-01-26
1111

1212
- Added: Option to filter out diagnostics in docstrings (#38) - Thanks @mzaks!
1313
- Fix: Cache active SDK to avoid redundant lookups (#41)

extension/lsp/lsp.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export class MojoLSPManager extends DisposableContext {
9090
vscode.commands.registerCommand('mojo.lsp.stop', async () => {
9191
if (this.lspClient) {
9292
await this.lspClient.stop();
93-
// We do not set lspClient to undefined, as this would trigger
93+
// We do not set lspClient to undefined, as this would trigger
9494
// restarting the client when a new mojo file is opened.
9595
}
9696
}),

0 commit comments

Comments
 (0)