diff options
author | Xavier Noria <fxn@hashref.com> | 2014-12-17 08:35:13 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2014-12-17 08:35:13 +0100 |
commit | 340162bf45d3379b796096a9f670ef190d77568e (patch) | |
tree | 423ae1dbaa1c4427322155715ab7d0d675c9a87c /guides/source | |
parent | dd8b5fb9d30f355d4eab6376b8d9e025e90b14d3 (diff) | |
parent | f165a1038f6da6d67195ccaef5c9edae456365d6 (diff) | |
download | rails-340162bf45d3379b796096a9f670ef190d77568e.tar.gz rails-340162bf45d3379b796096a9f670ef190d77568e.tar.bz2 rails-340162bf45d3379b796096a9f670ef190d77568e.zip |
Merge pull request #18065 from y-yagi/fix_autoloading_guide
fix link in autoloading guide [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/constant_autoloading_and_reloading.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/constant_autoloading_and_reloading.md b/guides/source/constant_autoloading_and_reloading.md index ab8ef399e7..4eb9cc16ad 100644 --- a/guides/source/constant_autoloading_and_reloading.md +++ b/guides/source/constant_autoloading_and_reloading.md @@ -840,7 +840,7 @@ end To resolve `User` Ruby checks `Admin` in the former case, but it does not in the latter because it does not belong to the nesting. (See [Nesting](#nesting) -and [Resolution Algorithms](#resolution- algorithms).) +and [Resolution Algorithms](#resolution-algorithms).) Unfortunately Rails autoloading does not know the nesting in the spot where the constant was missing and so it is not able to act as Ruby would. In particular, |