rewords a bit RDOC_MAIN.rdoc [ci skip]

* Same change as bba832d
This commit is contained in:
Yoshiyuki Hirano 2018-04-08 05:50:02 +09:00
parent bba832d48a
commit bc864aa7ab
1 changed files with 2 additions and 2 deletions

View File

@ -6,9 +6,9 @@ create database-backed web applications according to the
pattern. pattern.
Understanding the MVC pattern is key to understanding \Rails. MVC divides your Understanding the MVC pattern is key to understanding \Rails. MVC divides your
application into three layers, each with a specific responsibility. application into three layers: Model, View, and Controller, each with a specific responsibility.
The <em>Model layer</em> represents your domain model (such as Account, Product, The <em>Model layer</em> represents the domain model (such as Account, Product,
Person, Post, etc.) and encapsulates the business logic that is specific to Person, Post, etc.) and encapsulates the business logic that is specific to
your application. In \Rails, database-backed model classes are derived from your application. In \Rails, database-backed model classes are derived from
ActiveRecord::Base. Active Record allows you to present the data from ActiveRecord::Base. Active Record allows you to present the data from