1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix typo: test -> text

This commit is contained in:
Sean Collins 2015-12-30 17:15:07 -07:00
parent 904e3f4465
commit 0d3254e3e6

View file

@ -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
...