aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorJon Moss <maclover7@users.noreply.github.com>2016-02-08 12:40:24 -0500
committerJon Moss <maclover7@users.noreply.github.com>2016-02-08 12:40:24 -0500
commit6c785f0df7fd2964c04e04eb1e0948277d994e4b (patch)
tree8454e3b283fea1d42855b72a697e7dd588453ab9 /guides
parent9b5ae716db601a8a34a4227c9c4ef2ec9cf90f64 (diff)
parent581c2a6547e15e63c5039010ee581e2a593d6a83 (diff)
downloadrails-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')
-rw-r--r--guides/source/getting_started.md2
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.