1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Links for What's Here sections (#4827)

Makes What's Here sections in Time and Dir link to What's Here for super and included modules (like all the others).
This commit is contained in:
Burdette Lamar 2021-09-13 10:37:15 -05:00 committed by GitHub
parent 43f49b2d1c
commit 94dea77cd6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
Notes: git 2021-09-14 00:37:49 +09:00
Merged-By: BurdetteLamar <BurdetteLamar@Yahoo.com>
2 changed files with 13 additions and 2 deletions

8
dir.rb
View file

@ -9,7 +9,13 @@
#
# == What's Here
#
# \Class \Dir provides methods that are useful for:
# First, what's elsewhere. \Class \Dir:
#
# - Inherits from {class Object}[Object.html#class-Object-label-What-27s+Here].
# - Includes {module Enumerable}[Enumerable.html#module-Enumerable-label-What-27s+Here],
# which provides dozens of additional methods.
#
# Here, class \Dir provides methods that are useful for:
#
# - {Reading}[#class-Dir-label-Reading]
# - {Setting}[#class-Dir-label-Setting]

View file

@ -93,7 +93,12 @@
#
# == What's Here
#
# \Class \Time provides methods that are useful for:
# First, what's elsewhere. \Class \Time:
#
# - Inherits from {class Object}[Object.html#class-Object-label-What-27s+Here].
# - Includes {module Comparable}[Comparable.html#module-Comparable-label-What-27s+Here].
#
# Here, class \Time provides methods that are useful for:
#
# - {Creating \Time objects}[#class-Time-label-Methods+for+Creating].
# - {Fetching \Time values}[#class-Time-label-Methods+for+Fetching].