method

safe_concat

safe_concat(string)
public

No documentation available.

# File actionview/lib/action_view/helpers/text_helper.rb, line 56
      def safe_concat(string)
        output_buffer.respond_to?(:safe_concat) ? output_buffer.safe_concat(string) : concat(string)
      end