diff options
author | Niko Kiuru <niko@kiuru.net> | 2014-09-14 20:40:43 +0300 |
---|---|---|
committer | Niko Kiuru <niko@kiuru.net> | 2014-09-14 20:40:43 +0300 |
commit | 5ec944ed830063da2cb6ccb0d4bc0af55e8c1996 (patch) | |
tree | 60b753386d92eda08285fada181ca138d7d1f710 /guides/source | |
parent | e47b3e15edc8e4688611427768c51b9269d01293 (diff) | |
download | rails-5ec944ed830063da2cb6ccb0d4bc0af55e8c1996.tar.gz rails-5ec944ed830063da2cb6ccb0d4bc0af55e8c1996.tar.bz2 rails-5ec944ed830063da2cb6ccb0d4bc0af55e8c1996.zip |
Singular credit_card controller name changed to plural
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/command_line.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/command_line.md b/guides/source/command_line.md index a074b849c6..b9014724bd 100644 --- a/guides/source/command_line.md +++ b/guides/source/command_line.md @@ -130,7 +130,7 @@ Example: `rails generate controller CreditCards open debit credit close` Credit card controller with URLs like /credit_cards/debit. - Controller: app/controllers/credit_card_controller.rb + Controller: app/controllers/credit_cards_controller.rb Test: test/controllers/credit_cards_controller_test.rb Views: app/views/credit_cards/debit.html.erb [...] Helper: app/helpers/credit_cards_helper.rb |