Skip to content

Commit a993cf4

Browse files
committed
Fix Rubocop offenses
1 parent 0d36525 commit a993cf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/helpers/will_paginate_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def link(text, target, attributes = {})
1717
end
1818

1919
@template.link_to(target, attributes.merge(remote: true)) do # rubocop:disable Rails/HelperInstanceVariable
20-
text.to_s.html_safe # rubocop:disable Rails/OutputSafety as the string is already safe and provided by WillPaginate
20+
text.to_s.html_safe # rubocop:disable Rails/OutputSafety -- the string is already safe and provided by WillPaginate
2121
end
2222
end
2323
end

0 commit comments

Comments
 (0)