Fix some Style/StringConcatenation warnings

This commit is contained in:
Tom Hughes 2020-08-09 19:46:16 +01:00
parent 75e135869e
commit abca51e4d8
5 changed files with 18 additions and 18 deletions

View file

@ -44,7 +44,7 @@ module BrowseHelper
if object.redacted?
""
else
h(icon_tags(object).map { |k, v| k + "=" + v }.to_sentence)
h(icon_tags(object).map { |k, v| "#{k}=#{v}" }.to_sentence)
end
end