summaryrefslogtreecommitdiffhomepage
path: root/lib
diff options
context:
space:
mode:
authorGeremia Taglialatela <[email protected]>2023-04-08 11:45:31 +0200
committerGeremia Taglialatela <[email protected]>2023-04-08 11:45:31 +0200
commitacf00d356494ef504c3de0e4a0db6b25f2bd7636 (patch)
tree32ae11cf4900864abc034ec9265bf7b4a38fb258 /lib
parent5d68145521afe5c5912ceebae2f7e784eb5f8954 (diff)
downloadcaxlsx-acf00d356494ef504c3de0e4a0db6b25f2bd7636.tar.gz
caxlsx-acf00d356494ef504c3de0e4a0db6b25f2bd7636.zip
Fix offenses related to trailing commas
Diffstat (limited to 'lib')
-rw-r--r--lib/axlsx/workbook/worksheet/border_creator.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/axlsx/workbook/worksheet/border_creator.rb b/lib/axlsx/workbook/worksheet/border_creator.rb
index b949a76e..2dcbdf0f 100644
--- a/lib/axlsx/workbook/worksheet/border_creator.rb
+++ b/lib/axlsx/workbook/worksheet/border_creator.rb
@@ -48,7 +48,7 @@ module Axlsx
top: "#{first_cell}:#{last_col}#{first_row}",
right: "#{last_col}#{first_row}:#{last_cell}",
bottom: "#{first_col}#{last_row}:#{last_cell}",
- left: "#{first_cell}:#{first_col}#{last_row}",
+ left: "#{first_cell}:#{first_col}#{last_row}"
}
end