Merge pull request #759 from julianandrews/docs-typo-fix

Fix documentation typo
This commit is contained in:
w0rp 2017-07-11 23:18:48 +01:00 committed by GitHub
commit d12e990f73
1 changed files with 2 additions and 2 deletions

View File

@ -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 For example, if you want to turn flake8 errors into warnings, you can do
the following: > 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 If you wanted to turn style errors and warnings into regular errors and
warnings, you can use the following: > 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`. Type maps can be set per-buffer with `b:ale_type_map`.