aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/diagnostic.lua
diff options
context:
space:
mode:
authorGregory Anders <greg@gpanders.com>2023-12-13 09:43:27 -0600
committerGregory Anders <greg@gpanders.com>2023-12-13 09:43:27 -0600
commit39112c72dd3722cd4a0770fc23c9d7269a9c2283 (patch)
tree718f35d9b940651b67dc09498487bf4697e66c81 /runtime/lua/vim/diagnostic.lua
parent29d5ff6ac4eade7996d14eec60a31ec6328a165d (diff)
downloadrneovim-39112c72dd3722cd4a0770fc23c9d7269a9c2283.tar.gz
rneovim-39112c72dd3722cd4a0770fc23c9d7269a9c2283.tar.bz2
rneovim-39112c72dd3722cd4a0770fc23c9d7269a9c2283.zip
docs(diagnostic): fix typo in example
Diffstat (limited to 'runtime/lua/vim/diagnostic.lua')
-rw-r--r--runtime/lua/vim/diagnostic.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/lua/vim/diagnostic.lua b/runtime/lua/vim/diagnostic.lua
index d6db530bb0..1d76d1d7a0 100644
--- a/runtime/lua/vim/diagnostic.lua
+++ b/runtime/lua/vim/diagnostic.lua
@@ -598,9 +598,9 @@ end
--- to display in the sign column. The default is to use "E", "W", "I", and "H"
--- for errors, warnings, information, and hints, respectively. Example:
--- <pre>lua
---- vim.diagnostic.config({
---- sign = { text = { [vim.diagnostic.severity.ERROR] = 'E', ... } }
---- })
+--- vim.diagnostic.config({
+--- signs = { text = { [vim.diagnostic.severity.ERROR] = 'E', ... } }
+--- })
--- </pre>
--- - float: Options for floating windows. See |vim.diagnostic.open_float()|.
--- - update_in_insert: (default false) Update diagnostics in Insert mode (if false,