Skip to content

Commit b749527

Browse files
authored
Merge pull request rails#48008 from p8/docs/headers-actionpack-fix
Fix some doc headings naming [ci-skip]
2 parents 6f6a04f + c0d501e commit b749527

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

actionpack/lib/abstract_controller/base.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def corrections # :nodoc:
2626
end
2727
end
2828

29-
# = AbstractController \Base
29+
# = Abstract Controller \Base
3030
#
3131
# AbstractController::Base is a low-level API. Nobody should be
3232
# using it directly, and subclasses (like ActionController::Base) are

actionpack/lib/abstract_controller/caching/fragments.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
module AbstractController
44
module Caching
5-
# = AbstractController Caching \Fragments
5+
# = Abstract Controller Caching \Fragments
66
#
77
# Fragment caching is used for caching various blocks within
88
# views without caching the entire action as a whole. This is

actionpack/lib/action_dispatch/middleware/public_exceptions.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
module ActionDispatch
4-
# = ActionDispatch \PublicExceptions
4+
# = Action Dispatch \PublicExceptions
55
#
66
# When called, this middleware renders an error page. By default if an HTML
77
# response is expected it will render static error pages from the <tt>/public</tt>

actionpack/lib/action_dispatch/middleware/session/cookie_store.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
module ActionDispatch
88
module Session
9-
# = ActionDispatch Session \CookieStore
9+
# = Action Dispatch Session \CookieStore
1010
#
1111
# This cookie-based session store is the Rails default. It is
1212
# dramatically faster than the alternatives.

actionpack/lib/action_dispatch/middleware/static.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def call(env)
2626
end
2727
end
2828

29-
# = ActionDispatch \FileHandler
29+
# = Action Dispatch \FileHandler
3030
#
3131
# This endpoint serves static files from disk using +Rack::Files+.
3232
#

0 commit comments

Comments
 (0)