From 38b5bdb5dd95237646675c968091706f57a7a641 Mon Sep 17 00:00:00 2001 From: Peter Goldstein Date: Thu, 10 Feb 2022 07:52:41 -0800 Subject: [PATCH] Fix a few lints. --- manual/table/cell_dimensions.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/manual/table/cell_dimensions.rb b/manual/table/cell_dimensions.rb index 8fdf3e9..e6bc6f3 100644 --- a/manual/table/cell_dimensions.rb +++ b/manual/table/cell_dimensions.rb @@ -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