Fix some doc headings naming [ci-skip]

Headings should use the name of library instead of the namespace.
This commit is contained in:
Petrik 2023-04-21 10:15:47 +02:00
parent 932d2aeb6f
commit c0d501e818
5 changed files with 5 additions and 5 deletions

@ -26,7 +26,7 @@ def corrections # :nodoc:
end
end
# = AbstractController \Base
# = Abstract Controller \Base
#
# AbstractController::Base is a low-level API. Nobody should be
# using it directly, and subclasses (like ActionController::Base) are

@ -2,7 +2,7 @@
module AbstractController
module Caching
# = AbstractController Caching \Fragments
# = Abstract Controller Caching \Fragments
#
# Fragment caching is used for caching various blocks within
# views without caching the entire action as a whole. This is

@ -1,7 +1,7 @@
# frozen_string_literal: true
module ActionDispatch
# = ActionDispatch \PublicExceptions
# = Action Dispatch \PublicExceptions
#
# When called, this middleware renders an error page. By default if an HTML
# response is expected it will render static error pages from the <tt>/public</tt>

@ -6,7 +6,7 @@
module ActionDispatch
module Session
# = ActionDispatch Session \CookieStore
# = Action Dispatch Session \CookieStore
#
# This cookie-based session store is the Rails default. It is
# dramatically faster than the alternatives.

@ -26,7 +26,7 @@ def call(env)
end
end
# = ActionDispatch \FileHandler
# = Action Dispatch \FileHandler
#
# This endpoint serves static files from disk using +Rack::Files+.
#