Skip to content

Commit

Permalink
Fix a few lints.
Browse files Browse the repository at this point in the history
  • Loading branch information
petergoldstein authored and pointlessone committed Feb 17, 2022
1 parent e6b9965 commit 38b5bdb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions manual/table/cell_dimensions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
move_down 20
end

text "Padding can also be set with an array by specifying values for all sides: [0, 0, 0, 30]"
text "Padding can also be set with an array by specifying values for all sides: [0, 0, 0, 30]"
table(data, :cell_style => {:padding => [0, 0, 0, 30]}) # top, right, bottom, left
text "Padding can also be set by specifying only vertical and horizontal values: [0,30]"

text "Padding can also be set by specifying only vertical and horizontal values: [0,30]"
table(data, :cell_style => {:padding => [0, 30]}) # vertical, horizontal
text "Padding can also be set by specifying top, horizontal and bottom values: [0,30,10]"
table(data, :cell_style => {:padding => [0,30,10]}) # top, horizontal, bottom

text "Padding can also be set by specifying top, horizontal and bottom values: [0,30,10]"
table(data, :cell_style => {:padding => [0, 30, 10]}) # top, horizontal, bottom
end

0 comments on commit 38b5bdb

Please sign in to comment.