aboutsummaryrefslogtreecommitdiffstats
path: root/railties/README
diff options
context:
space:
mode:
Diffstat (limited to 'railties/README')
-rw-r--r--railties/README4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/README b/railties/README
index 4f8bee3c0e..7860e2bff3 100644
--- a/railties/README
+++ b/railties/README
@@ -14,7 +14,7 @@ In Rails, the model is handled by what's called a object-relational mapping
layer entitled Active Record. This layer allows you to present the data from
database rows as objects and embellish these data objects with business logic
methods. You can read more about Active Record in
-link:files/vendor/activerecord/README.html.
+link:files/vendor/rails/activerecord/README.html.
The controller and view is handled by the Action Pack, which handles both
layers by its two parts: Action View and Action Controller. These two layers
@@ -22,7 +22,7 @@ are bundled in a single package due to their heavy interdependence. This is
unlike the relationship between the Active Record and Action Pack that is much
more separate. Each of these packages can be used independently outside of
Rails. You can read more about Action Pack in
-link:files/vendor/actionpack/README.html.
+link:files/vendor/rails/actionpack/README.html.
== Requirements