From 9a3e8dc83e20f3166d7360ce0bba2c2848f708d3 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 27 Mar 2005 16:04:57 +0000 Subject: [PATCH] Fixed doc links git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1025 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/README | 4 ++-- 1 file 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