Fix a mistake in the FAQ code for the autocmd event

This commit is contained in:
w0rp 2016-10-25 15:01:10 +01:00 committed by GitHub
parent 0fbf7bcc99
commit 9a019e2342
1 changed files with 1 additions and 1 deletions

View File

@ -287,6 +287,6 @@ autocmd event can be used to call arbitrary functions after ALE stops linting.
```vim ```vim
augroup YourGroup augroup YourGroup
autocmd! autocmd!
autocmd ALELint * call YourFunction() autocmd ALELint call YourFunction()
augroup END augroup END
``` ```