Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
idanarye committed Jan 16, 2018
1 parent 62ad3a1 commit 238732d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion autoload/merginal/buffers/historyLog.vim
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function! s:f.generateHeader() dict abort
endfunction

function! s:f.generateBody() dict abort
let l:logLines = self.gitLines('log', '--max-count', get(g:, 'merginal_logCommitCount, -1), '--format=%h %aN%n%ci%n%s%n', self.branch)
let l:logLines = self.gitLines('log', '--max-count', get(g:, 'merginal_logCommitCount', -1), '--format=%h %aN%n%ci%n%s%n', self.branch)
if empty(l:logLines[len(l:logLines) - 1])
call remove(l:logLines, len(l:logLines) - 1)
endif
Expand Down
2 changes: 1 addition & 1 deletion doc/merginal.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Author: Idan Arye <https://github.com/idanarye/>
License: Same terms as Vim itself (see |license|)

Version: 2.1.0
Version: 2.1.0+

INTRODUCTION *merginal*

Expand Down

0 comments on commit 238732d

Please sign in to comment.