aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Munroe <mike@mikemunroe.com>2013-02-28 16:52:07 -0500
committerMike Munroe <mike@mikemunroe.com>2013-02-28 16:52:07 -0500
commitbbe6948bb563593add246bbf98587467d55afcae (patch)
tree4d37136cf4a3a8672bb1c413daeacbfa8367d2db
parent731aac740bc95e643b4e1899c0146afdb74cd539 (diff)
downloadrails-bbe6948bb563593add246bbf98587467d55afcae.tar.gz
rails-bbe6948bb563593add246bbf98587467d55afcae.tar.bz2
rails-bbe6948bb563593add246bbf98587467d55afcae.zip
fix broken links to README docs in intro
-rw-r--r--README.rdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.rdoc b/README.rdoc
index bb9c418e0b..55b5efc916 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:/rails/rails/blob/master/activerecord/README.rdoc].
+{README}[link:/activerecord/README.rdoc].
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:/rails/rails/blob/master/actionpack/README.rdoc].
+can read more about Action Pack in its {README}[link:/actionpack/README.rdoc].
== Getting Started