# File lib/action_dispatch/middleware/best_standards_support.rb, line 16
    def call(env)
      status, headers, body = @app.call(env)
      headers["X-UA-Compatible"] = @header
      [status, headers, body]
    end