class ApplicationController < ActionController::Base
def hello
render html: 'Hello World!'
end
end
I have this defined in my application_controller.rb file and I'm just trying to figure out what the "html: 'Hello World!'" syntax is. Is this like a hash passed to the render method?