Skip to content

Commit

Permalink
git_ui: fix bug from bad end keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
psyomn committed Jul 26, 2015
1 parent 59534c8 commit 4b8299f
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions lib/wlog/ui/git_ui.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,19 @@ def run

end
end
end

private
private

def print_help
['ls, show', 'list the current git repository settings',
'set', 'set repo and author for currnet git repository',
'unset', 'unsets git repository settings',
'help', 'print this menu'].each_with_index do |cmd,ix|
print " " if ix % 2 == 1
puts cmd
end
end
def print_help
['ls, show', 'list the current git repository settings',
'set', 'set repo and author for currnet git repository',
'unset', 'unsets git repository settings',
'help', 'print this menu'].each_with_index do |cmd,ix|
print " " if ix % 2 == 1
puts cmd
end
end

end
end

0 comments on commit 4b8299f

Please sign in to comment.