From 90db29aff86b96290fd90983b9b5b1749e51897f 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. (Bug#66569) Copyright-paperwork-exempt: yes --- 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 6eb212ca841..3ddbac01ce8 100644 --- a/doc/misc/eglot.texi +++ b/doc/misc/eglot.texi @@ -1234,8 +1234,8 @@ For example, the plist @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 @@ -1249,7 +1249,7 @@ is serialized by Eglot to the following JSON text: "jedi_completion": @{ "include_params": true, "fuzzy": true, - "cache_for": [ "pandas", "numpy" ], + "cache_for": [ "pandas", "numpy" ] @}, "pylint": @{ "enabled": false @@ -1257,8 +1257,8 @@ is serialized by Eglot to the following JSON text: @} @}, "gopls": @{ - "usePlaceholders":true - @}, + "usePlaceholders": true + @} @} @end example -- 2.39.2