diff options
author | Sean Collins <sean@cllns.com> | 2015-12-30 17:15:07 -0700 |
---|---|---|
committer | Sean Collins <sean@cllns.com> | 2015-12-30 17:15:07 -0700 |
commit | 0d3254e3e69c9973617c354b59f5bd11bc995b57 (patch) | |
tree | a795ea3049fed432bb9b66fe87ffdcb09ef1b72c /guides/source | |
parent | 904e3f4465cb2b874bd99000e96e2e6e0e03844c (diff) | |
download | rails-0d3254e3e69c9973617c354b59f5bd11bc995b57.tar.gz rails-0d3254e3e69c9973617c354b59f5bd11bc995b57.tar.bz2 rails-0d3254e3e69c9973617c354b59f5bd11bc995b57.zip |
Fix typo: test -> text
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/testing.md | 2 |
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 ... |