From 35e39d2318ec9f1fadcee206d5bedab090708f4d Mon Sep 17 00:00:00 2001 From: Kris De Volder Date: Tue, 8 May 2018 11:07:28 -0700 Subject: [PATCH] Fix typo in DEVELOPER-NOTES --- vscode-extensions/vscode-spring-boot/DEVELOPER-NOTES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vscode-extensions/vscode-spring-boot/DEVELOPER-NOTES.md b/vscode-extensions/vscode-spring-boot/DEVELOPER-NOTES.md index cf924f168..313c81c3b 100644 --- a/vscode-extensions/vscode-spring-boot/DEVELOPER-NOTES.md +++ b/vscode-extensions/vscode-spring-boot/DEVELOPER-NOTES.md @@ -41,7 +41,7 @@ You can then connect a 'Remote Java' debugger on port 8000. To debug the language server, open `lib/Main.ts` and edit to set the `CONNECT_TO_LS` option to `true`. When you launch the app next by pressing -`F5`... When it needs a language server it not launch a process but instead +`F5`... When it needs a language server it will not launch a process but instead try to connect to an already running server on port `5007`. It is up to you to ensure a server is running on that port by launching it beforehand with a commandline arguments: `-Dstandalone-startup=true`.