aboutsummaryrefslogtreecommitdiffstats
path: root/railties/RDOC_MAIN.rdoc
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2013-07-06 22:24:06 +0200
committerXavier Noria <fxn@hashref.com>2013-07-06 22:24:06 +0200
commit8d8d4b7782145aedc0604d9179931ec9b9b5225a (patch)
treefbab3b614c314a5e58ae1a2118e9afb1afd5ea2e /railties/RDOC_MAIN.rdoc
parent03c2cd67bde795bdfd3578331324f886ddf9f266 (diff)
downloadrails-8d8d4b7782145aedc0604d9179931ec9b9b5225a.tar.gz
rails-8d8d4b7782145aedc0604d9179931ec9b9b5225a.tar.bz2
rails-8d8d4b7782145aedc0604d9179931ec9b9b5225a.zip
fixes broken links in the API [Fixes #11335] [ci skip]
Diffstat (limited to 'railties/RDOC_MAIN.rdoc')
-rw-r--r--railties/RDOC_MAIN.rdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/RDOC_MAIN.rdoc b/railties/RDOC_MAIN.rdoc
index cadf0fb43e..aa67005b24 100644
--- a/railties/RDOC_MAIN.rdoc
+++ b/railties/RDOC_MAIN.rdoc
@@ -18,7 +18,7 @@ you to present the data from database rows as objects and embellish these data o
with business logic methods. Although most \Rails models are backed by a database, models
can also be ordinary Ruby classes, or Ruby classes that implement a set of interfaces as
provided by the ActiveModel module. You can read more about Active Record in its
-{README}[link:/activerecord/README.rdoc].
+{README}[link:files/activerecord/README_rdoc.html].
The Controller layer is responsible for handling incoming HTTP requests and providing a
suitable response. Usually this means returning \HTML, but \Rails controllers can also
@@ -29,7 +29,7 @@ In \Rails, the Controller and View layers are handled together by Action Pack.
These two layers are bundled in a single package due to their heavy interdependence.
This is unlike the relationship between Active Record and Action Pack, which are
independent. Each of these packages can be used independently outside of \Rails. You
-can read more about Action Pack in its {README}[link:/actionpack/README.rdoc].
+can read more about Action Pack in its {README}[link:files/actionpack/README_rdoc.html].
== Getting Started