Skip to content

Commit ec4e340

Browse files
Remove unnecessary link markup [ci-skip]
Because they are CamelCase, RDoc will automatically link these references. Automatic links have monospace formatting, whereas, in some cases, manual links do not.
1 parent ee8d949 commit ec4e340

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed

actiontext/lib/action_text/fixture_set.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ module ActionText
44
# Fixtures are a way of organizing data that you want to test against; in
55
# short, sample data.
66
#
7-
# To learn more about fixtures, read the
8-
# {ActiveRecord::FixtureSet}[rdoc-ref:ActiveRecord::FixtureSet] documentation.
7+
# To learn more about fixtures, read the ActiveRecord::FixtureSet documentation.
98
#
109
# === YAML
1110
#

activerecord/lib/active_record/transactions.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ module Transactions
9999
# be propagated (after triggering the ROLLBACK), so you should be ready to
100100
# catch those in your application code.
101101
#
102-
# One exception is the {ActiveRecord::Rollback}[rdoc-ref:Rollback] exception, which will trigger
102+
# One exception is the ActiveRecord::Rollback exception, which will trigger
103103
# a ROLLBACK when raised, but not be re-raised by the transaction block. Any
104104
# other exception will be re-raised.
105105
#

activestorage/app/models/active_storage/attachment.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# but it is possible to associate many different records with the same blob. A foreign-key constraint
77
# on the attachments table prevents blobs from being purged if they’re still attached to any records.
88
#
9-
# Attachments also have access to all methods from {ActiveStorage::Blob}[rdoc-ref:ActiveStorage::Blob].
9+
# Attachments also have access to all methods from ActiveStorage::Blob.
1010
#
1111
# If you wish to preload attachments or blobs, you can use these scopes:
1212
#

activestorage/lib/active_storage/fixture_set.rb

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,13 @@ module ActiveStorage
77
# Fixtures are a way of organizing data that you want to test against; in
88
# short, sample data.
99
#
10-
# To learn more about fixtures, read the
11-
# {ActiveRecord::FixtureSet}[rdoc-ref:ActiveRecord::FixtureSet] documentation.
10+
# To learn more about fixtures, read the ActiveRecord::FixtureSet documentation.
1211
#
1312
# === YAML
1413
#
15-
# Like other Active Record-backed models,
16-
# {ActiveStorage::Attachment}[rdoc-ref:ActiveStorage::Attachment] and
17-
# {ActiveStorage::Blob}[rdoc-ref:ActiveStorage::Blob] records inherit from
18-
# {ActiveRecord::Base}[rdoc-ref:ActiveRecord::Base] instances and therefore
19-
# can be populated by fixtures.
14+
# Like other Active Record-backed models, ActiveStorage::Attachment and
15+
# ActiveStorage::Blob records inherit from ActiveRecord::Base instances and
16+
# therefore can be populated by fixtures.
2017
#
2118
# Consider a hypothetical <tt>Article</tt> model class, its related
2219
# fixture data, as well as fixture data for related ActiveStorage::Attachment

0 commit comments

Comments
 (0)