# File lib/action_view/helpers/text_helper.rb, line 27 def concat(string, unused_binding = nil) if unused_binding ActiveSupport::Deprecation.warn("The binding argument of #concat is no longer needed. Please remove it from your views and helpers.", caller) end output_buffer.safe_concat(string) end