Skip to content

Commit a78f341

Browse files
Merge pull request rails#46482 from skipkayhil/fix-edge-links
Replace hardcoded edge links in guides [ci skip]
2 parents dffe4aa + 897beb8 commit a78f341

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

guides/source/action_text_overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ GlobalID](https://github.com/rails/globalid#signed-global-ids).
145145
Action Text renders embedded `<action-text-attachment>` elements by resolving
146146
their `sgid` attribute into an instance. Once resolved, that instance is passed
147147
along to
148-
[`render`](https://edgeapi.rubyonrails.org/classes/ActionView/Helpers/RenderingHelper.html#method-i-render).
148+
[`render`](https://api.rubyonrails.org/classes/ActionView/Helpers/RenderingHelper.html#method-i-render).
149149
The resulting HTML is embedded as a descendant of the `<action-text-attachment>`
150150
element.
151151

guides/source/autoloading_and_reloading_constants.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ Corollary: Those classes or modules **cannot be reloadable**.
309309

310310
The easiest way to refer to those classes or modules during boot is to have them defined in a directory which does not belong to the autoload paths. For instance, `lib` is an idiomatic choice. It does not belong to the autoload paths by default, but it does belong to `$LOAD_PATH`. Just perform a regular `require` to load it.
311311

312-
As noted above, another option is to have the directory that defines them in the autoload once paths and autoload. Please check the [section about config.autoload_once_paths](https://edgeguides.rubyonrails.org/autoloading_and_reloading_constants.html#config-autoload-once-paths) for details.
312+
As noted above, another option is to have the directory that defines them in the autoload once paths and autoload. Please check the [section about config.autoload_once_paths](#config-autoload-once-paths) for details.
313313

314314
Eager Loading
315315
-------------

guides/source/contributing_to_ruby_on_rails.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ The Ruby on Rails [guides](https://guides.rubyonrails.org/) provide a high-level
492492

493493
If your PR adds a new feature, or changes how an existing feature behaves, check the relevant documentation, and update it or add to it as necessary.
494494

495-
For example, if you modify Active Storage's image analyzer to add a new metadata field, you should update the [Analyzing Files](https://edgeguides.rubyonrails.org/active_storage_overview.html#analyzing-files) section of the Active Storage guide to reflect that.
495+
For example, if you modify Active Storage's image analyzer to add a new metadata field, you should update the [Analyzing Files](active_storage_overview.html#analyzing-files) section of the Active Storage guide to reflect that.
496496

497497
### Updating the CHANGELOG
498498

0 commit comments

Comments
 (0)