aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2013-04-21 15:10:56 -0700
committerSantiago Pastorino <santiago@wyeworks.com>2013-04-21 15:10:56 -0700
commit6b3979d93b4f3cf7c58395d0920b50dbf900e4e3 (patch)
treebfbfaa32ef0363cece882805eb5adbb476b5a0c8
parent3e47e193c64cc90981e1b87a26a951097c02d6ec (diff)
parentc02675b649fe5c27477a6d053b8500be9f2b422d (diff)
downloadrails-6b3979d93b4f3cf7c58395d0920b50dbf900e4e3.tar.gz
rails-6b3979d93b4f3cf7c58395d0920b50dbf900e4e3.tar.bz2
rails-6b3979d93b4f3cf7c58395d0920b50dbf900e4e3.zip
Merge pull request #10289 from maratvmk/readme
fix README links in the main README.md
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 45c50a1708..3f4da806c6 100644
--- a/README.md
+++ b/README.md
@@ -21,7 +21,7 @@ database rows as objects and embellish these data objects 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 Active Model module. You can read more about Active Record
-in its [README](link:/activerecord/README.rdoc).
+in its [README](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
@@ -33,7 +33,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:/actionpack/README.rdoc).
+can read more about Action Pack in its [README](actionpack/README.rdoc).
## Getting Started