From e931c8cb581764015fc0057a18b7de71b8af0938 Mon Sep 17 00:00:00 2001 From: Michael Panchenko Date: Tue, 20 May 2025 15:46:43 +0200 Subject: [PATCH] Typo --- src/multilspy/language_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/multilspy/language_server.py b/src/multilspy/language_server.py index dadcba0..2c50fbb 100644 --- a/src/multilspy/language_server.py +++ b/src/multilspy/language_server.py @@ -801,7 +801,7 @@ class LanguageServer: async def request_document_symbols(self, relative_file_path: str, include_body: bool = False) -> Tuple[List[multilspy_types.UnifiedSymbolInformation], List[multilspy_types.UnifiedSymbolInformation]]: """ Raise a [textDocument/documentSymbol](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#textDocument_documentSymbol) request to the Language Server - to find symbols in the given file. Wait for the zresponse and return the result. + to find symbols in the given file. Wait for the response and return the result. :param relative_file_path: The relative path of the file that has the symbols :param include_body: whether to include the body of the symbols in the result.