diff options
author | w0rp <devw0rp@gmail.com> | 2017-07-08 22:52:34 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-07-08 22:52:34 +0100 |
commit | 1b55e5edab4dd37a2a4421a2f6b36d14a5c51051 (patch) | |
tree | 2f111907c89e700fbfa4bdce98d222f9ed67fb5f | |
parent | 4fd5bf81beeaf2780bb967214f5b9670a309a98b (diff) | |
download | ale-1b55e5edab4dd37a2a4421a2f6b36d14a5c51051.zip |
Fix a syntax error in an example
-rw-r--r-- | doc/ale.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ale.txt b/doc/ale.txt index c062ca24..c80e337c 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -609,7 +609,7 @@ g:ale_pattern_options *g:ale_pattern_options* let g:ale_pattern_options = { \ '\.foo\.js$': { - \ 'ale_linters: {'javascript': ['eslint']}, + \ 'ale_linters': {'javascript': ['eslint']}, \ }, \} < @@ -1113,7 +1113,7 @@ ALEDisable *ALEDisable* quickfix items, signs, current jobs, etc. Executing any of those commands will change the |g:ale_enabled| variable. - For convenience, a plug mapping `<Plug>(ale_toggle)` is defined for the + For convenience, a plug mapping `<Plug>(ale_toggle)` is defined for the |ALEToggle| command. |