From b96d565af31fcbfe177527468bb328be0322bcd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dirk=20B=C3=A4umer?= Date: Tue, 11 Jun 2024 16:10:13 +0200 Subject: [PATCH] Reference FileChangeType (#1948) --- _specifications/lsp/3.17/workspace/didChangeWatchedFiles.md | 2 +- _specifications/lsp/3.18/workspace/didChangeWatchedFiles.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_specifications/lsp/3.17/workspace/didChangeWatchedFiles.md b/_specifications/lsp/3.17/workspace/didChangeWatchedFiles.md index 19bd9ac51..d06269d53 100644 --- a/_specifications/lsp/3.17/workspace/didChangeWatchedFiles.md +++ b/_specifications/lsp/3.17/workspace/didChangeWatchedFiles.md @@ -181,7 +181,7 @@ interface FileEvent { /** * The change type. */ - type: uinteger; + type: FileChangeType; } ``` diff --git a/_specifications/lsp/3.18/workspace/didChangeWatchedFiles.md b/_specifications/lsp/3.18/workspace/didChangeWatchedFiles.md index 369f5be2d..6e55095a5 100644 --- a/_specifications/lsp/3.18/workspace/didChangeWatchedFiles.md +++ b/_specifications/lsp/3.18/workspace/didChangeWatchedFiles.md @@ -181,7 +181,7 @@ interface FileEvent { /** * The change type. */ - type: uinteger; + type: FileChangeType; } ```