summaryrefslogtreecommitdiffhomepage
path: root/lib/axlsx/stylesheet
diff options
context:
space:
mode:
authorGeremia Taglialatela <[email protected]>2023-06-05 17:14:59 +0200
committerGeremia Taglialatela <[email protected]>2023-06-05 17:27:41 +0200
commitb0fb7d1f19afbc933b3aa445f5d95d4b6bef9f6b (patch)
treea50309ea3b0db8a2de8d3f6985ba29de3b826f5a /lib/axlsx/stylesheet
parent0cc60e3eb08e11542612871e2e15350ed07fff06 (diff)
downloadcaxlsx-b0fb7d1f19afbc933b3aa445f5d95d4b6bef9f6b.tar.gz
caxlsx-b0fb7d1f19afbc933b3aa445f5d95d4b6bef9f6b.zip
Prefer `Kernel#format` to `String#%`
This commit fixes cases that cannot be detected by RuboCop Ref: https://www.rubydoc.info/gems/rubocop/RuboCop/Cop/Style/FormatString
Diffstat (limited to 'lib/axlsx/stylesheet')
-rw-r--r--lib/axlsx/stylesheet/styles.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/axlsx/stylesheet/styles.rb b/lib/axlsx/stylesheet/styles.rb
index 6356d9e6..bdda36c7 100644
--- a/lib/axlsx/stylesheet/styles.rb
+++ b/lib/axlsx/stylesheet/styles.rb
@@ -370,7 +370,7 @@ module Axlsx
if options[:border].is_a?(Integer)
if options[:border] >= borders.size
- raise ArgumentError, (ERR_INVALID_BORDER_ID % options[:border])
+ raise ArgumentError, format(ERR_INVALID_BORDER_ID, options[:border])
end
if options[:type] == :dxf
@@ -382,7 +382,7 @@ module Axlsx
validate_border_hash = ->(val) {
unless val.key?(:style) && val.key?(:color)
- raise ArgumentError, (ERR_INVALID_BORDER_OPTIONS % options[:border])
+ raise ArgumentError, format(ERR_INVALID_BORDER_OPTIONS, options[:border])
end
}