diff options
Diffstat (limited to 'tools/astro-languageserver/src/index.ts')
-rw-r--r-- | tools/astro-languageserver/src/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/astro-languageserver/src/index.ts b/tools/astro-languageserver/src/index.ts index 41f04d11a..bc25f9475 100644 --- a/tools/astro-languageserver/src/index.ts +++ b/tools/astro-languageserver/src/index.ts @@ -71,7 +71,7 @@ export function startServer() { connection.onDidCloseTextDocument((evt) => docManager.closeDocument(evt.textDocument.uri)); connection.onDidChangeTextDocument((evt) => { - docManager.updateDocument(evt.textDocument.uri, evt.contentChanges) + docManager.updateDocument(evt.textDocument.uri, evt.contentChanges); }); connection.onDidChangeWatchedFiles((evt) => { |