From 9f544885bc2bbfe992cc285693c4bacb318f998c Mon Sep 17 00:00:00 2001 From: Andrew Grangaard Date: Mon, 29 Mar 2021 20:21:32 -0700 Subject: [PATCH] fix typo in settings documentation. (#1699) --- docs/settings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/settings.md b/docs/settings.md index 34a3741e0..d7fa47c90 100644 --- a/docs/settings.md +++ b/docs/settings.md @@ -2,7 +2,7 @@ The Pyright VS Code extension honors the following settings. -**pyright.disableLanguageServices** [boolean]: Disables all language services except for “hover”. This includes type completion, signature completion, find definition, find references, and find symbols in file. This option is useful if you want to use pyright only as a type checker but want to run another Python language server for langue service features. +**pyright.disableLanguageServices** [boolean]: Disables all language services except for “hover”. This includes type completion, signature completion, find definition, find references, and find symbols in file. This option is useful if you want to use pyright only as a type checker but want to run another Python language server for language service features. **pyright.disableOrganizeImports** [boolean]: Disables the “Organize Imports” command. This is useful if you are using another extension that provides similar functionality and you don’t want the two extensions to fight each other.