aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2014-12-17 13:58:09 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2014-12-17 13:58:09 +0900
commitf165a1038f6da6d67195ccaef5c9edae456365d6 (patch)
tree423ae1dbaa1c4427322155715ab7d0d675c9a87c
parentdd8b5fb9d30f355d4eab6376b8d9e025e90b14d3 (diff)
downloadrails-f165a1038f6da6d67195ccaef5c9edae456365d6.tar.gz
rails-f165a1038f6da6d67195ccaef5c9edae456365d6.tar.bz2
rails-f165a1038f6da6d67195ccaef5c9edae456365d6.zip
fix link in autoloading guide [ci skip]
-rw-r--r--guides/source/constant_autoloading_and_reloading.md2
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,