Skip to content

Commit

Permalink
Changed wording of paragraph 2.1.1 Models to clarify table/model
Browse files Browse the repository at this point in the history
relationship.

changed wording 'one table ... corresponds to one model' to 'each table
...'
  • Loading branch information
Mike Howard authored and fxn committed Jul 24, 2011
1 parent d9b6f89 commit 998a3ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion railties/guides/source/getting_started.textile
Expand Up @@ -50,7 +50,7 @@ At the core of Rails is the Model, View, Controller architecture, usually just c

h5. Models

A model represents the information (data) of the application and the rules to manipulate that data. In the case of Rails, models are primarily used for managing the rules of interaction with a corresponding database table. In most cases, one table in your database will correspond to one model in your application. The bulk of your application's business logic will be concentrated in the models.
A model represents the information (data) of the application and the rules to manipulate that data. In the case of Rails, models are primarily used for managing the rules of interaction with a corresponding database table. In most cases, each table in your database will correspond to one model in your application. The bulk of your application's business logic will be concentrated in the models.

h5. Views

Expand Down

0 comments on commit 998a3ef

Please sign in to comment.