Cleanup: Spelling/grammar in comments

This commit is contained in:
Kris De Volder
2020-01-15 12:35:11 -08:00
parent a89514043a
commit ebb4596543

View File

@@ -30,7 +30,7 @@ public class ConcourseLanguageServerBootApp {
private static final String SERVER_NAME = "concourse-language-server";
public static void main(String[] args) throws Exception {
System.setProperty(LanguageServerRunner.SYSPROP_LANGUAGESERVER_NAME, SERVER_NAME); //makes it easy to recognize language server processes - and set this as early as possible
System.setProperty(LanguageServerRunner.SYSPROP_LANGUAGESERVER_NAME, SERVER_NAME); //makes it easy to recognize language server processes. Set this as early as possible.
LogRedirect.bootRedirectToFile(SERVER_NAME); //TODO: use boot (or logback realy) to configure logging instead.
SpringApplication.run(ConcourseLanguageServerBootApp.class, args);