aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorDixit Patel <dixitpatel012@aol.com>2017-11-28 16:42:11 +0530
committerDixit Patel <dixitpatel012@aol.com>2017-11-28 16:42:11 +0530
commitce180231d954785b8c91ba4f9ba3fc12ff2e0de3 (patch)
treeef00288b46158e129694022a531b12c9800f429e /guides/source
parent349f00beaa16f6b5eec3de7d3be8e9b72313a92f (diff)
downloadrails-ce180231d954785b8c91ba4f9ba3fc12ff2e0de3.tar.gz
rails-ce180231d954785b8c91ba4f9ba3fc12ff2e0de3.tar.bz2
rails-ce180231d954785b8c91ba4f9ba3fc12ff2e0de3.zip
[ci skip] Update MVC wiki link
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/action_controller_overview.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md
index 28f7246197..6ecfb57db3 100644
--- a/guides/source/action_controller_overview.md
+++ b/guides/source/action_controller_overview.md
@@ -21,7 +21,7 @@ After reading this guide, you will know:
What Does a Controller Do?
--------------------------
-Action Controller is the C in MVC. After the router has determined which controller to use for a request, the controller is responsible for making sense of the request and producing the appropriate output. Luckily, Action Controller does most of the groundwork for you and uses smart conventions to make this as straightforward as possible.
+Action Controller is the C in [MVC](https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller). After the router has determined which controller to use for a request, the controller is responsible for making sense of the request, and producing the appropriate output. Luckily, Action Controller does most of the groundwork for you and uses smart conventions to make this as straightforward as possible.
For most conventional [RESTful](https://en.wikipedia.org/wiki/Representational_state_transfer) applications, the controller will receive the request (this is invisible to you as the developer), fetch or save data from a model and use a view to create HTML output. If your controller needs to do things a little differently, that's not a problem, this is just the most common way for a controller to work.