summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Roden-Corrent <ryan@rcorre.net>2019-10-13 09:06:38 -0400
committerRyan Roden-Corrent <ryan@rcorre.net>2019-10-13 09:06:38 -0400
commit5a1505ad62262263224ed8d0f908515fc116f776 (patch)
tree5d1e6453a8d7d7765ab7a52b0d88230197e5617a
parent3fe2223a48465c58c48a5a6a30ecf13ab92f7b97 (diff)
downloadale-5a1505ad62262263224ed8d0f908515fc116f776.zip
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'`.
-rw-r--r--doc/ale.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ale.txt b/doc/ale.txt
index c6e48043..01b6181d 100644
--- a/doc/ale.txt
+++ b/doc/ale.txt
@@ -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',
\})