aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorSean Collins <sean@cllns.com>2015-12-30 17:15:07 -0700
committerSean Collins <sean@cllns.com>2015-12-30 17:15:07 -0700
commit0d3254e3e69c9973617c354b59f5bd11bc995b57 (patch)
treea795ea3049fed432bb9b66fe87ffdcb09ef1b72c /guides
parent904e3f4465cb2b874bd99000e96e2e6e0e03844c (diff)
downloadrails-0d3254e3e69c9973617c354b59f5bd11bc995b57.tar.gz
rails-0d3254e3e69c9973617c354b59f5bd11bc995b57.tar.bz2
rails-0d3254e3e69c9973617c354b59f5bd11bc995b57.zip
Fix typo: test -> text
Diffstat (limited to 'guides')
-rw-r--r--guides/source/testing.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index a4b62955c5..84f80e3c37 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -654,7 +654,7 @@ The easiest way to see functional tests in action is to generate a controller
scaffold:
```bash
-$ bin/rails generate scaffold_controller article title:string body:test
+$ bin/rails generate scaffold_controller article title:string body:text
...
create app/controllers/articles_controller.rb
...