diff options
author | Godfrey Chan <godfreykfc@gmail.com> | 2014-11-25 04:34:43 -0800 |
---|---|---|
committer | Godfrey Chan <godfreykfc@gmail.com> | 2014-11-25 04:34:43 -0800 |
commit | 40c3880d8bc3273a8dbaa3ee0e95d084e71e1aa3 (patch) | |
tree | 09eb8da85e85d4ff0a80fe4cf5683d2af826d360 | |
parent | c42ef3fd02b843e8e25d25910b89fa624f0a2522 (diff) | |
download | rails-40c3880d8bc3273a8dbaa3ee0e95d084e71e1aa3.tar.gz rails-40c3880d8bc3273a8dbaa3ee0e95d084e71e1aa3.tar.bz2 rails-40c3880d8bc3273a8dbaa3ee0e95d084e71e1aa3.zip |
We shouldn't be linking to edgeapi [ci skip]
-rw-r--r-- | guides/source/engines.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/engines.md b/guides/source/engines.md index de33f5f067..a1f2da18ed 100644 --- a/guides/source/engines.md +++ b/guides/source/engines.md @@ -1166,7 +1166,7 @@ end Using `Class#class_eval` is great for simple adjustments, but for more complex class modifications, you might want to consider using [`ActiveSupport::Concern`] -(http://edgeapi.rubyonrails.org/classes/ActiveSupport/Concern.html). +(http://api.rubyonrails.org/classes/ActiveSupport/Concern.html). ActiveSupport::Concern manages load order of interlinked dependent modules and classes at run time allowing you to significantly modularize your code. |