diff options
author | w0rp <w0rp@users.noreply.github.com> | 2017-07-11 23:18:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-11 23:18:48 +0100 |
commit | d12e990f73156506fecfe7bb229dff8b8d57ee4a (patch) | |
tree | 1468c7ef21eeec5011df1f88533e7daa98dc490d | |
parent | a96cc92edfb4deced6154857c384ad943d81bc74 (diff) | |
parent | bbabdd0043e172950384e153bdffe42e68731604 (diff) | |
download | ale-d12e990f73156506fecfe7bb229dff8b8d57ee4a.zip |
Merge pull request #759 from julianandrews/docs-typo-fix
Fix documentation typo
-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 72c64f77..d8de056b 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -800,12 +800,12 @@ g:ale_type_map *g:ale_type_map* For example, if you want to turn flake8 errors into warnings, you can do the following: > - let g:ale_type_map = {'flake8', {'ES': 'WS', 'E': 'W'}} + let g:ale_type_map = {'flake8': {'ES': 'WS', 'E': 'W'}} < If you wanted to turn style errors and warnings into regular errors and warnings, you can use the following: > - let g:ale_type_map = {'flake8', {'ES': 'E', 'WS': 'W'}} + let g:ale_type_map = {'flake8': {'ES': 'E', 'WS': 'W'}} < Type maps can be set per-buffer with `b:ale_type_map`. |