aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_view_overview.md
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2016-05-31 10:47:34 -0400
committerJon Moss <me@jonathanmoss.me>2016-05-31 10:47:34 -0400
commitf832ebf49692caeea3c405cbbfd795e6ccc05656 (patch)
tree227e25d9570ded0bfa0c86efde140154ab7eb403 /guides/source/action_view_overview.md
parent350b7b616233688b890c7374c613b9aa39b76897 (diff)
downloadrails-f832ebf49692caeea3c405cbbfd795e6ccc05656.tar.gz
rails-f832ebf49692caeea3c405cbbfd795e6ccc05656.tar.bz2
rails-f832ebf49692caeea3c405cbbfd795e6ccc05656.zip
`will be` --> `is`
[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 0e6bb76101..f68abbae3c 100644
--- a/guides/source/action_view_overview.md
+++ b/guides/source/action_view_overview.md
@@ -15,7 +15,7 @@ After reading this guide, you will know:
What is Action View?
--------------------
-In Rails, web requests are handled by [Action Controller](action_controller_overview.html) and Action View. Typically, Action Controller will be concerned with communicating with the database and performing CRUD actions where necessary. Action View is then responsible for compiling the response.
+In Rails, web requests are handled by [Action Controller](action_controller_overview.html) and Action View. Typically, Action Controller is concerned with communicating with the database and performing CRUD actions where necessary. Action View is then responsible for compiling the response.
Action View templates are written using embedded Ruby in tags mingled with HTML. To avoid cluttering the templates with boilerplate code, a number of helper classes provide common behavior for forms, dates, and strings. It's also easy to add new helpers to your application as it evolves.