Fix viml type in readme

`else` should comes after `elseif`.
This commit is contained in:
Wang Shidong
2018-03-05 09:19:34 -06:00
committed by Andy Massimino
parent d647ae8d2c
commit f28dddf49f

View File

@@ -104,9 +104,9 @@ couple examples:
```vim
if l:x == 1
call one()
else
elseif l:x == 2
call two()
elseif
else
call three()
endif
```