aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorGannon McGibbon <gannon.mcgibbon@gmail.com>2018-10-30 14:14:00 -0400
committerGitHub <noreply@github.com>2018-10-30 14:14:00 -0400
commit9a18a10e1cf6dd971d170f3684717c2ffe687776 (patch)
tree07dc273773d0345d37136ff9840dd9eddbdce40d /actionpack/lib
parent405aef3dede8938c8eb9789f6d6722864faddb09 (diff)
parent170cb2ee9ba825c6f9ea6544bb118f7e31194251 (diff)
downloadrails-9a18a10e1cf6dd971d170f3684717c2ffe687776.tar.gz
rails-9a18a10e1cf6dd971d170f3684717c2ffe687776.tar.bz2
rails-9a18a10e1cf6dd971d170f3684717c2ffe687776.zip
Merge pull request #34314 from bf4/patch-2
ActionController::API *does* support cookies, sessions
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_controller/api.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/api.rb b/actionpack/lib/action_controller/api.rb
index 93ffff1bd6..c276ee57c0 100644
--- a/actionpack/lib/action_controller/api.rb
+++ b/actionpack/lib/action_controller/api.rb
@@ -12,7 +12,7 @@ module ActionController
#
# An API Controller is different from a normal controller in the sense that
# by default it doesn't include a number of features that are usually required
- # by browser access only: layouts and templates rendering, cookies, sessions,
+ # by browser access only: layouts and templates rendering,
# flash, assets, and so on. This makes the entire controller stack thinner,
# suitable for API applications. It doesn't mean you won't have such
# features if you need them: they're all available for you to include in