From 518266d8c5ba53373acf9bf26bf5e7bc4d81fc59 Mon Sep 17 00:00:00 2001 From: Andy Stewart Date: Tue, 5 Mar 2013 09:33:52 +0100 Subject: [PATCH] Fix typo. --- plugin/gitgutter.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/gitgutter.vim b/plugin/gitgutter.vim index dd79099..7ed008c 100644 --- a/plugin/gitgutter.vim +++ b/plugin/gitgutter.vim @@ -111,7 +111,7 @@ function! s:parse_diff(diff) let to_line = str2nr(matches[3]) let to_count = (matches[4] == '') ? 1 : str2nr(matches[4]) call add(hunks, [from_line, from_count, to_line, to_count]) - end + endif endfor return hunks endfunction