diff options
author | Agis Anastasopoulos <corestudiosinc@gmail.com> | 2012-11-15 13:51:19 +0200 |
---|---|---|
committer | Agis Anastasopoulos <corestudiosinc@gmail.com> | 2012-11-15 13:51:19 +0200 |
commit | b3a3870765d5de043d32df1ad6445c4bf4e0ca28 (patch) | |
tree | ddc134e956ff76e108e5e5e6c97b0c4f11ccc124 /guides/source | |
parent | 688d8bf4435405a1d78f9223e2000ef791e9b9bc (diff) | |
download | rails-b3a3870765d5de043d32df1ad6445c4bf4e0ca28.tar.gz rails-b3a3870765d5de043d32df1ad6445c4bf4e0ca28.tar.bz2 rails-b3a3870765d5de043d32df1ad6445c4bf4e0ca28.zip |
Slightly improve the syntax
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/action_controller_overview.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md index ea642c8b9f..14114e7cef 100644 --- a/guides/source/action_controller_overview.md +++ b/guides/source/action_controller_overview.md @@ -404,7 +404,7 @@ Note that while for session values you set the key to `nil`, to delete a cookie Rendering xml and json data --------------------------- -ActionController makes it extremely easy to render `xml` or `json` data. If you generate a controller using scaffold then your controller would look something like this. +ActionController makes it extremely easy to render `xml` or `json` data. If you generate a controller using scaffolding then it would look something like this: ```ruby class UsersController < ApplicationController |