Fix TCP server config example.

The docs for the `address` parameter of `Define` say:

> This argument must only be set if the `lsp` argument
> is set to `'socket'`.
This commit is contained in:
Ryan Roden-Corrent 2019-10-13 09:06:38 -04:00
parent 3fe2223a48
commit 5a1505ad62
No known key found for this signature in database
GPG Key ID: 435D8B10692555C9
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ address to connect to instead. >
call ale#linter#Define('filetype_here', {
\ 'name': 'any_name_you_want',
\ 'lsp': 'stdio',
\ 'lsp': 'socket',
\ 'address': 'servername:1234',
\ 'project_root': '/path/to/root_of_project',
\})