aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_controller_overview.md
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2013-05-12 15:57:14 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2013-05-12 15:57:14 +0530
commitd8b8c0ef8717508c01ab21687666941008413906 (patch)
treebc148d9244b01f88a8547b4581818abe4ec138a5 /guides/source/action_controller_overview.md
parenta395c22fd3f55040c041a330c14b3676bfee29fc (diff)
parent1a9766f1280f9550ba1de4538fccd5ad51c557ac (diff)
downloadrails-d8b8c0ef8717508c01ab21687666941008413906.tar.gz
rails-d8b8c0ef8717508c01ab21687666941008413906.tar.bz2
rails-d8b8c0ef8717508c01ab21687666941008413906.zip
Merge branch 'master' of github.com:lifo/docrails
Conflicts: activesupport/lib/active_support/callbacks.rb
Diffstat (limited to 'guides/source/action_controller_overview.md')
-rw-r--r--guides/source/action_controller_overview.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md
index 43a59e8d43..28939f307f 100644
--- a/guides/source/action_controller_overview.md
+++ b/guides/source/action_controller_overview.md
@@ -568,10 +568,10 @@ end
Note that while for session values you set the key to `nil`, to delete a cookie value you should use `cookies.delete(:key)`.
-Rendering xml and json data
+Rendering XML and JSON data
---------------------------
-ActionController makes it extremely easy to render `xml` or `json` data. If you've generated a controller using scaffolding, it would look something like this:
+ActionController makes it extremely easy to render `XML` or `JSON` data. If you've generated a controller using scaffolding, it would look something like this:
```ruby
class UsersController < ApplicationController