aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_view_overview.md
diff options
context:
space:
mode:
authoryui-knk <spiketeika@gmail.com>2015-07-28 20:52:07 +0900
committeryui-knk <spiketeika@gmail.com>2015-07-28 20:52:07 +0900
commit2962da6bb9bbcf7f50507f8dccbb80521f75209c (patch)
treeeb2658f42bbc7acd4b60f0e77a2356baa6d909a4 /guides/source/action_view_overview.md
parent8452593149f758190d6d3b637ed321e50259a263 (diff)
downloadrails-2962da6bb9bbcf7f50507f8dccbb80521f75209c.tar.gz
rails-2962da6bb9bbcf7f50507f8dccbb80521f75209c.tar.bz2
rails-2962da6bb9bbcf7f50507f8dccbb80521f75209c.zip
[ci skip] Add a link to action_controller_overview.html
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 e23e0ea66c..db7eeed19a 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 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 will be 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.