diff options
author | Eileen M. Uchitelle <eileencodes@users.noreply.github.com> | 2018-03-12 09:02:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-12 09:02:27 -0400 |
commit | 76d516089691cf448604a368af8a8279b5b1f28f (patch) | |
tree | e85361a90054ebe591ac6968243b338a7844aa70 /guides/source/action_controller_overview.md | |
parent | aacda9c6901bef01ffac6a11b073305676b3062f (diff) | |
parent | f1b14944841ab4890dacb755dcae627dae101d67 (diff) | |
download | rails-76d516089691cf448604a368af8a8279b5b1f28f.tar.gz rails-76d516089691cf448604a368af8a8279b5b1f28f.tar.bz2 rails-76d516089691cf448604a368af8a8279b5b1f28f.zip |
Merge pull request #32227 from ydakuka/fix-notes-marks
Fix note marks
Diffstat (limited to 'guides/source/action_controller_overview.md')
-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 6ecfb57db3..eadd517f07 100644 --- a/guides/source/action_controller_overview.md +++ b/guides/source/action_controller_overview.md @@ -855,7 +855,7 @@ If you want to set custom headers for a response then `response.headers` is the response.headers["Content-Type"] = "application/pdf" ``` -Note: in the above case it would make more sense to use the `content_type` setter directly. +NOTE: In the above case it would make more sense to use the `content_type` setter directly. HTTP Authentications -------------------- |