diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-03-27 16:04:57 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-03-27 16:04:57 +0000 |
commit | 9a3e8dc83e20f3166d7360ce0bba2c2848f708d3 (patch) | |
tree | abd4af9ccc58c53639778cdeaf4ae8237822d57a | |
parent | 1b17cddc3c82a33c17d48df220d2d97a77dcce2a (diff) | |
download | rails-9a3e8dc83e20f3166d7360ce0bba2c2848f708d3.tar.gz rails-9a3e8dc83e20f3166d7360ce0bba2c2848f708d3.tar.bz2 rails-9a3e8dc83e20f3166d7360ce0bba2c2848f708d3.zip |
Fixed doc links
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1025 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r-- | railties/README | 4 |
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 |