summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2016-10-25 15:01:10 +0100
committerGitHub <noreply@github.com>2016-10-25 15:01:10 +0100
commit9a019e2342900e10a98538ccc9b18e28b3143a2b (patch)
tree3d9bfa20d46bc4c1e95516ed6cf9657dc2484005 /README.md
parent0fbf7bcc99c451cb433a0df472887753e1ec2d07 (diff)
downloadale-9a019e2342900e10a98538ccc9b18e28b3143a2b.zip
Fix a mistake in the FAQ code for the autocmd event
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index c9ef1317..f881cf18 100644
--- a/README.md
+++ b/README.md
@@ -287,6 +287,6 @@ autocmd event can be used to call arbitrary functions after ALE stops linting.
```vim
augroup YourGroup
autocmd!
- autocmd ALELint * call YourFunction()
+ autocmd ALELint call YourFunction()
augroup END
```