diff options
Diffstat (limited to 'actionpack/lib')
4 files changed, 6 insertions, 6 deletions
| diff --git a/actionpack/lib/action_controller/caching.rb b/actionpack/lib/action_controller/caching.rb index 80d13e25f1..ffd8081edc 100644 --- a/actionpack/lib/action_controller/caching.rb +++ b/actionpack/lib/action_controller/caching.rb @@ -13,7 +13,7 @@ module ActionController #:nodoc:    #    # == Caching stores    # -  # All the caching stores from ActiveSupport::Cache is available to be used as backends for Action Controller caching. This setting only +  # All the caching stores from ActiveSupport::Cache are available to be used as backends for Action Controller caching. This setting only    # affects action and fragment caching as page caching is always written to disk.    #    # Configuration examples (MemoryStore is the default): diff --git a/actionpack/lib/action_controller/caching/actions.rb b/actionpack/lib/action_controller/caching/actions.rb index 87b5029e57..b99feddf77 100644 --- a/actionpack/lib/action_controller/caching/actions.rb +++ b/actionpack/lib/action_controller/caching/actions.rb @@ -134,7 +134,7 @@ module ActionController #:nodoc:            end          end -        # When true, infer_extension will look up the cache path extension from the request's path & format. +        # If +infer_extension+ is true, the cache path extension is looked up from the request's path & format.          # This is desirable when reading and writing the cache, but not when expiring the cache -          # expire_action should expire the same files regardless of the request format.          def initialize(controller, options = {}, infer_extension = true) diff --git a/actionpack/lib/action_view/helpers/date_helper.rb b/actionpack/lib/action_view/helpers/date_helper.rb index c74909a360..72fe9a3232 100644 --- a/actionpack/lib/action_view/helpers/date_helper.rb +++ b/actionpack/lib/action_view/helpers/date_helper.rb @@ -106,8 +106,8 @@ module ActionView        alias_method :distance_of_time_in_words_to_now, :time_ago_in_words        # Returns a set of select tags (one for year, month, and day) pre-selected for accessing a specified date-based -      # attribute (identified by +method+) on an object assigned to the template (identified by +object+). You can -      # the output in the +options+ hash. +      # attribute (identified by +method+) on an object assigned to the template (identified by +object+). +      #        #        # ==== Options        # * <tt>:use_month_numbers</tt> - Set to true if you want to use month numbers rather than month names (e.g. @@ -232,7 +232,7 @@ module ActionView        # Returns a set of select tags (one for year, month, day, hour, and minute) pre-selected for accessing a        # specified datetime-based attribute (identified by +method+) on an object assigned to the template (identified -      # by +object+). Examples: +      # by +object+).        #        # If anything is passed in the html_options hash it will be applied to every select tag in the set.        # diff --git a/actionpack/lib/action_view/helpers/form_tag_helper.rb b/actionpack/lib/action_view/helpers/form_tag_helper.rb index 6d39a53adc..daf38fe3da 100644 --- a/actionpack/lib/action_view/helpers/form_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb @@ -406,7 +406,7 @@ module ActionView        # <tt>legend</tt> will become the fieldset's title (optional as per W3C).        # <tt>options</tt> accept the same values as tag.        # -      # === Examples +      # ==== Examples        #   <% field_set_tag do %>        #     <p><%= text_field_tag 'name' %></p>        #   <% end %> | 
