aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2017-03-12 19:30:00 +0530
committerGitHub <noreply@github.com>2017-03-12 19:30:00 +0530
commit1aa8b509a08efd60f5391abbc6c039f872511f27 (patch)
tree609d6c1561f298b2b7dd39bbc3b513ddbef84097
parent4cb8cbd80b0bfedc0fb7033c9f5c41a65312b644 (diff)
parent30433253eda59656b1060d6ccc5e1b8e5913c331 (diff)
downloadrails-1aa8b509a08efd60f5391abbc6c039f872511f27.tar.gz
rails-1aa8b509a08efd60f5391abbc6c039f872511f27.tar.bz2
rails-1aa8b509a08efd60f5391abbc6c039f872511f27.zip
Merge pull request #27152 from tjai89/patch-5
Add link to API documentation [ci skip]
-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 40eb838d32..69c4a00c5f 100644
--- a/guides/source/action_controller_overview.md
+++ b/guides/source/action_controller_overview.md
@@ -61,7 +61,7 @@ end
The [Layouts & Rendering Guide](layouts_and_rendering.html) explains this in more detail.
-`ApplicationController` inherits from `ActionController::Base`, which defines a number of helpful methods. This guide will cover some of these, but if you're curious to see what's in there, you can see all of them in the API documentation or in the source itself.
+`ApplicationController` inherits from `ActionController::Base`, which defines a number of helpful methods. This guide will cover some of these, but if you're curious to see what's in there, you can see all of them in the [API documentation](http://api.rubyonrails.org/classes/ActionController.html) or in the source itself.
Only public methods are callable as actions. It is a best practice to lower the visibility of methods (with `private` or `protected`) which are not intended to be actions, like auxiliary methods or filters.