aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-07-28 20:56:14 +0900
committerYves Senn <yves.senn@gmail.com>2015-07-28 20:56:14 +0900
commit6f4421e4d981be86c04b13fb6965eaaea1c44644 (patch)
treeeb2658f42bbc7acd4b60f0e77a2356baa6d909a4 /guides
parent8452593149f758190d6d3b637ed321e50259a263 (diff)
parent2962da6bb9bbcf7f50507f8dccbb80521f75209c (diff)
downloadrails-6f4421e4d981be86c04b13fb6965eaaea1c44644.tar.gz
rails-6f4421e4d981be86c04b13fb6965eaaea1c44644.tar.bz2
rails-6f4421e4d981be86c04b13fb6965eaaea1c44644.zip
Merge pull request #21048 from yui-knk/fix/guide_about_action_pack2
[ci skip] Add a link to action_controller_overview.html
Diffstat (limited to 'guides')
-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.