From 90d8687c08cb1f801e0e6fddfe48158e70498b2d Mon Sep 17 00:00:00 2001 From: "Andy K. Massimino" Date: Mon, 5 Mar 2018 13:10:46 -0500 Subject: [PATCH] Fix viml typo in docs (re #23) --- doc/matchup.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/matchup.txt b/doc/matchup.txt index 3afb48a..6babbe1 100644 --- a/doc/matchup.txt +++ b/doc/matchup.txt @@ -200,9 +200,9 @@ of examples: > if l:x == 1 call one() - else + elseif l:x == 2 call two() - elseif + else call three() endif <