From 41677743e92452938b80877ae35b2721dd811c84 Mon Sep 17 00:00:00 2001 From: jixiuf Date: Mon, 16 Sep 2024 01:26:02 +0800 Subject: [PATCH] fix typo in readme --- README.org | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.org b/README.org index a6e0919..388c465 100644 --- a/README.org +++ b/README.org @@ -143,9 +143,9 @@ The list of LSP server settings is available in the [[https://github.com/eclipse Per general Eclipse JDT.LS documentation, a basic skeleton of an initialization customization could look as follow: #+begin_src emacs-lisp - '(:bundles: ["/home/me/.emacs.d/lsp-bundles/com.microsoft.java.debug.plugin-0.50.0.jar"] - :workspaceFolders: ["file:///home/me/Projects/mavenproject"] - :settings: (:java (:home "/usr/local/jdk21")) + '(:bundles ["/home/me/.emacs.d/lsp-bundles/com.microsoft.java.debug.plugin-0.50.0.jar"] + :workspaceFolders ["file:///home/me/Projects/mavenproject"] + :settings (:java (:home "/usr/local/jdk21")) :extendedClientCapabilities (:classFileContentsSupport t)) #+end_src