diff options
author | Prayag Verma <prayag.verma@gmail.com> | 2016-02-08 22:40:48 +0530 |
---|---|---|
committer | Prayag Verma <prayag.verma@gmail.com> | 2016-02-08 22:40:48 +0530 |
commit | 581c2a6547e15e63c5039010ee581e2a593d6a83 (patch) | |
tree | 8454e3b283fea1d42855b72a697e7dd588453ab9 | |
parent | 9b5ae716db601a8a34a4227c9c4ef2ec9cf90f64 (diff) | |
download | rails-581c2a6547e15e63c5039010ee581e2a593d6a83.tar.gz rails-581c2a6547e15e63c5039010ee581e2a593d6a83.tar.bz2 rails-581c2a6547e15e63c5039010ee581e2a593d6a83.zip |
Fix a typo
Replace `a` with `an`
-rw-r--r-- | guides/source/getting_started.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 2cbc591629..8eb3b6190f 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -653,7 +653,7 @@ run this command in your terminal: $ bin/rails generate model Article title:string text:text ``` -With that command we told Rails that we want a `Article` model, together +With that command we told Rails that we want an `Article` model, together with a _title_ attribute of type string, and a _text_ attribute of type text. Those attributes are automatically added to the `articles` table in the database and mapped to the `Article` model. |