diff options
author | Jorge Bejar <jorge@wyeworks.com> | 2015-05-05 15:08:21 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2015-06-11 16:54:14 -0300 |
commit | 2487bfb39a8ef5e18fd9cc8f971395139e7c727c (patch) | |
tree | 87955697d13e17b06bc7b170a09bfeb129385d18 | |
parent | fa11f10c948fde0a580acf4668849664c8ae95c6 (diff) | |
download | rails-2487bfb39a8ef5e18fd9cc8f971395139e7c727c.tar.gz rails-2487bfb39a8ef5e18fd9cc8f971395139e7c727c.tar.bz2 rails-2487bfb39a8ef5e18fd9cc8f971395139e7c727c.zip |
Do not say that Api Controllers are faster than regular ones in docs
-rw-r--r-- | actionpack/lib/action_controller/api.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/actionpack/lib/action_controller/api.rb b/actionpack/lib/action_controller/api.rb index ff199567b9..cb819067da 100644 --- a/actionpack/lib/action_controller/api.rb +++ b/actionpack/lib/action_controller/api.rb @@ -5,14 +5,14 @@ require 'action_controller/log_subscriber' module ActionController # API Controller is a lightweight version of <tt>ActionController::Base</tt>, # created for applications that don't require all functionality that a complete - # \Rails controller provides, allowing you to create faster controllers for - # example for API only applications. + # \Rails controller provides, allowing you to create controllers with just the + # features that you need for API only applications. # # 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, - # flash, assets, and so on. This makes the entire controller stack thinner and - # faster, suitable for API applications. It doesn't mean you won't have such + # 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 # your application, they're just not part of the default API Controller stack. # |