mirror of https://github.com/rails/rails
fix README links in the main README.md
This commit is contained in:
parent
3e47e193c6
commit
c02675b649
|
@ -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
|
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
|
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
|
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
|
The _Controller layer_ is responsible for handling incoming HTTP requests and
|
||||||
providing a suitable response. Usually this means returning HTML, but Rails
|
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.
|
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
|
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
|
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
|
## Getting Started
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue