aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_view_overview.md
diff options
context:
space:
mode:
authorJosef Šimánek <josef.simanek@gmail.com>2014-05-20 13:29:18 +0200
committerJosef Šimánek <josef.simanek@gmail.com>2014-05-20 13:29:18 +0200
commit981dda53dbb0f573e537e107271d2dce76447110 (patch)
treea8993bd4afbc552e1a7de61e99dd5c6d6703b6b2 /guides/source/action_view_overview.md
parent8f8dfa488a7c20196d597cab6b9eb4ddaaa597c2 (diff)
downloadrails-981dda53dbb0f573e537e107271d2dce76447110.tar.gz
rails-981dda53dbb0f573e537e107271d2dce76447110.tar.bz2
rails-981dda53dbb0f573e537e107271d2dce76447110.zip
Use generated binstubs in guides examples.
[ci skip]
Diffstat (limited to 'guides/source/action_view_overview.md')
-rw-r--r--guides/source/action_view_overview.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_view_overview.md b/guides/source/action_view_overview.md
index 74f95bfcfd..b700d1c861 100644
--- a/guides/source/action_view_overview.md
+++ b/guides/source/action_view_overview.md
@@ -28,7 +28,7 @@ For each controller there is an associated directory in the `app/views` director
Let's take a look at what Rails does by default when creating a new resource using the scaffold generator:
```bash
-$ rails generate scaffold post
+$ bin/rails generate scaffold post
[...]
invoke scaffold_controller
create app/controllers/posts_controller.rb