aboutsummaryrefslogtreecommitdiffstats
path: root/README.rdoc
diff options
context:
space:
mode:
authorJason Noble <perlwizard@gmail.com>2011-06-17 14:13:30 -0700
committerJason Noble <perlwizard@gmail.com>2011-06-17 14:13:30 -0700
commit51cb74596a8caaff7500fa6a8813b867e9e8dd80 (patch)
treec403e30ac96408168ad17a184e6fa0ea6086c694 /README.rdoc
parentc56618ec0dccc20dc23b993d2f71225be71cbc75 (diff)
downloadrails-51cb74596a8caaff7500fa6a8813b867e9e8dd80.tar.gz
rails-51cb74596a8caaff7500fa6a8813b867e9e8dd80.tar.bz2
rails-51cb74596a8caaff7500fa6a8813b867e9e8dd80.zip
Change ActiveRecord and ActionPack links to point to the right place
Diffstat (limited to 'README.rdoc')
-rw-r--r--README.rdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.rdoc b/README.rdoc
index 4a9a56d390..2de83670b3 100644
--- a/README.rdoc
+++ b/README.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:master/activerecord/README_rdoc.html].
+{README}[link:master/activerecord/README.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 the 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:master/actionpack/README_rdoc.html].
+can read more about Action Pack in its {README}[link:master/actionpack/README.html].
== Getting Started