Skip to content

Commit

Permalink
Merge pull request #74 from vizv/fix-spec-without-cell-border
Browse files Browse the repository at this point in the history
Fix two spec failures.
  • Loading branch information
nateberkopec authored Aug 28, 2016
2 parents c14b98f + 60f8d57 commit 3e389c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/terminal-table/table.rb
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def render
buffer += @rows
buffer << separator
end
buffer.map { |r| style.margin_left + r.render }.join("\n")
buffer.map { |r| style.margin_left + r.render.rstrip }.join("\n")
end
alias :to_s :render

Expand Down

0 comments on commit 3e389c4

Please sign in to comment.