diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-04-12 21:29:03 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-04-12 21:36:46 +0530 |
commit | 6cab7602bb53464f625968d233530f6982841629 (patch) | |
tree | 136c46910bf91745da0d865bec4c3bc7de6b2e53 | |
parent | 018e832d844f8ca480f5af2e6ec78a2ca284e9c6 (diff) | |
download | rails-6cab7602bb53464f625968d233530f6982841629.tar.gz rails-6cab7602bb53464f625968d233530f6982841629.tar.bz2 rails-6cab7602bb53464f625968d233530f6982841629.zip |
avoid autolinking by rdoc [ci skip]
-rw-r--r-- | actionpack/lib/action_view/helpers/date_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_view/helpers/date_helper.rb b/actionpack/lib/action_view/helpers/date_helper.rb index cb46f26d99..1f237cd013 100644 --- a/actionpack/lib/action_view/helpers/date_helper.rb +++ b/actionpack/lib/action_view/helpers/date_helper.rb @@ -12,11 +12,11 @@ module ActionView # elements. All of the select-type methods share a number of common options that are as follows: # # * <tt>:prefix</tt> - overwrites the default prefix of "date" used for the select names. So specifying "birthday" - # would give birthday[month] instead of date[month] if passed to the <tt>select_month</tt> method. + # would give \birthday[month] instead of \date[month] if passed to the <tt>select_month</tt> method. # * <tt>:include_blank</tt> - set to true if it should be possible to set an empty date. # * <tt>:discard_type</tt> - set to true if you want to discard the type part of the select name. If set to true, # the <tt>select_month</tt> method would use simply "date" (which can be overwritten using <tt>:prefix</tt>) instead - # of "date[month]". + # of \date[month]. module DateHelper # Reports the approximate distance in time between two Time, Date or DateTime objects or integers as seconds. # Set <tt>include_seconds</tt> to true if you want more detailed approximations when distance < 1 min, 29 secs. |