From a1a32a498e8c97775611cf04fc46d30d909e4200 Mon Sep 17 00:00:00 2001 From: Matthew Woodcraft Date: Sun, 15 Oct 2023 19:50:26 +0100 Subject: [PATCH] Fix eglot.texi (JSONRPC objects in Elisp) example * doc/misc/eglot.texi (JSONRPC objects in Elisp): Correct the example --- doc/misc/eglot.texi | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/misc/eglot.texi b/doc/misc/eglot.texi index 3c1d44cd363..9ffea80b641 100644 --- a/doc/misc/eglot.texi +++ b/doc/misc/eglot.texi @@ -1237,8 +1237,8 @@ JSONRPC objects in Elisp @lisp (:pylsp (:plugins (:jedi_completion (:include_params t :fuzzy t - :cache_for ["pandas" "numpy"] - :pylint (:enabled :json-false)))) + :cache_for ["pandas" "numpy"]) + :pylint (:enabled :json-false))) :gopls (:usePlaceholders t)) @end lisp @@ -1252,7 +1252,7 @@ JSONRPC objects in Elisp "jedi_completion": @{ "include_params": true, "fuzzy": true, - "cache_for": [ "pandas", "numpy" ], + "cache_for": [ "pandas", "numpy" ] @}, "pylint": @{ "enabled": false @@ -1260,8 +1260,8 @@ JSONRPC objects in Elisp @} @}, "gopls": @{ - "usePlaceholders":true - @}, + "usePlaceholders": true + @} @} @end example -- 2.39.2