From 53319096f1ba1dd1c9f08aa55275076de4487e26 Mon Sep 17 00:00:00 2001 From: Rob Zolkos Date: Sat, 25 Aug 2018 19:11:01 +1000 Subject: [PATCH] Format respond_to method as code in doc [ci skip] This updates the `respond_to` method to be code formatted rather than plain text (as it refers to the method) --- actionpack/lib/action_controller/metal/mime_responds.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actionpack/lib/action_controller/metal/mime_responds.rb b/actionpack/lib/action_controller/metal/mime_responds.rb index 2b55b9347ce62..9e63e3e7b6384 100644 --- a/actionpack/lib/action_controller/metal/mime_responds.rb +++ b/actionpack/lib/action_controller/metal/mime_responds.rb @@ -105,7 +105,7 @@ module MimeResponds # # Mime::Type.register "image/jpg", :jpg # - # Respond to also allows you to specify a common block for different formats by using +any+: + # +respond_to+ also allows you to specify a common block for different formats by using +any+: # # def index # @people = Person.all