aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_controller_overview.md
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2012-11-29 05:14:08 -0800
committerSteve Klabnik <steve@steveklabnik.com>2012-11-29 05:14:08 -0800
commit6dcae8ae9c21abd95cc119dd5625b4fb44fd4350 (patch)
tree66620e30489b5169182f337f33f733f4d5013e8b /guides/source/action_controller_overview.md
parent5cdb23c722dbec0a4a5f74f2b64250bf410db5e2 (diff)
downloadrails-6dcae8ae9c21abd95cc119dd5625b4fb44fd4350.tar.gz
rails-6dcae8ae9c21abd95cc119dd5625b4fb44fd4350.tar.bz2
rails-6dcae8ae9c21abd95cc119dd5625b4fb44fd4350.zip
Add periods to the bullet points in guides.
Talked with @fxn about this. Bullet points should have periods at the ends.
Diffstat (limited to 'guides/source/action_controller_overview.md')
-rw-r--r--guides/source/action_controller_overview.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md
index 6f161e83ea..267ca865c8 100644
--- a/guides/source/action_controller_overview.md
+++ b/guides/source/action_controller_overview.md
@@ -3,13 +3,13 @@ Action Controller Overview
In this guide you will learn how controllers work and how they fit into the request cycle in your application. After reading this guide, you will be able to:
-* Follow the flow of a request through a controller
-* Understand why and how to store data in the session or cookies
-* Work with filters to execute code during request processing
-* Use Action Controller's built-in HTTP authentication
-* Stream data directly to the user's browser
-* Filter sensitive parameters so they do not appear in the application's log
-* Deal with exceptions that may be raised during request processing
+* Follow the flow of a request through a controller.
+* Understand why and how to store data in the session or cookies.
+* Work with filters to execute code during request processing.
+* Use Action Controller's built-in HTTP authentication.
+* Stream data directly to the user's browser.
+* Filter sensitive parameters so they do not appear in the application's log.
+* Deal with exceptions that may be raised during request processing.
--------------------------------------------------------------------------------