diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2016-02-08 12:40:24 -0500 |
---|---|---|
committer | Jon Moss <maclover7@users.noreply.github.com> | 2016-02-08 12:40:24 -0500 |
commit | 6c785f0df7fd2964c04e04eb1e0948277d994e4b (patch) | |
tree | 8454e3b283fea1d42855b72a697e7dd588453ab9 /guides/source | |
parent | 9b5ae716db601a8a34a4227c9c4ef2ec9cf90f64 (diff) | |
parent | 581c2a6547e15e63c5039010ee581e2a593d6a83 (diff) | |
download | rails-6c785f0df7fd2964c04e04eb1e0948277d994e4b.tar.gz rails-6c785f0df7fd2964c04e04eb1e0948277d994e4b.tar.bz2 rails-6c785f0df7fd2964c04e04eb1e0948277d994e4b.zip |
Merge pull request #23563 from pra85/patch-2
Fix a typo
Diffstat (limited to 'guides/source')
-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. |