aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Jankowski <mjankowski@thoughtbot.com>2011-06-21 15:12:11 -0400
committerMatt Jankowski <mjankowski@thoughtbot.com>2011-06-21 15:12:11 -0400
commitdb4f0ac025a53017b35337f81e1096a58fdce1fb (patch)
tree0e929c1b6df7bb8e87d99966ccc8ae7c8bfc1767
parent620bee45febffb49a379a81784a2b6ea4d08e923 (diff)
downloadrails-db4f0ac025a53017b35337f81e1096a58fdce1fb.tar.gz
rails-db4f0ac025a53017b35337f81e1096a58fdce1fb.tar.bz2
rails-db4f0ac025a53017b35337f81e1096a58fdce1fb.zip
use present tense on examples
-rw-r--r--actionpack/lib/abstract_controller/layouts.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/actionpack/lib/abstract_controller/layouts.rb b/actionpack/lib/abstract_controller/layouts.rb
index 5853fb7852..d6f75bded0 100644
--- a/actionpack/lib/abstract_controller/layouts.rb
+++ b/actionpack/lib/abstract_controller/layouts.rb
@@ -82,11 +82,11 @@ module AbstractController
# layout nil
#
# In these examples:
- # * The InformationController will use the "bank_standard" layout, which is inherited from BankController
- # * The TellerController will follow convention and use +app/views/layouts/teller.html.erb+
- # * The TillController will inherit the layout from TellerController and use +teller.html.erb+ as well
- # * The VaultController will pick a layout dynamically by calling the <tt>access_level_layout</tt> method
- # * The EmployeeController will not use a layout
+ # * The InformationController uses the "bank_standard" layout, inherited from BankController.
+ # * The TellerController follows convention and uses +app/views/layouts/teller.html.erb+.
+ # * The TillController inherits the layout from TellerController and uses +teller.html.erb+ as well.
+ # * The VaultController chooses a layout dynamically by calling the <tt>access_level_layout</tt> method.
+ # * The EmployeeController does not use a layout at all.
#
# == Types of layouts
#