diff options
author | Erol Fornoles <erol.fornoles@gmail.com> | 2016-10-25 18:29:49 +0800 |
---|---|---|
committer | Erol Fornoles <erol.fornoles@gmail.com> | 2016-10-25 18:30:39 +0800 |
commit | 00632d3c5d545a47fd91d45a49603aa8cbd3ed70 (patch) | |
tree | ebc69c820c2d5b3a4906295587d72ef2d3ac9f74 | |
parent | 0b4679f192a4892a6eb09bb6103d967408cfdc83 (diff) | |
download | rails-00632d3c5d545a47fd91d45a49603aa8cbd3ed70.tar.gz rails-00632d3c5d545a47fd91d45a49603aa8cbd3ed70.tar.bz2 rails-00632d3c5d545a47fd91d45a49603aa8cbd3ed70.zip |
Fix small typo in ActionView API documentation [ci skip]
-rw-r--r-- | actionview/lib/action_view/helpers/date_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/helpers/date_helper.rb b/actionview/lib/action_view/helpers/date_helper.rb index 04c5fd4218..ea7259a25d 100644 --- a/actionview/lib/action_view/helpers/date_helper.rb +++ b/actionview/lib/action_view/helpers/date_helper.rb @@ -267,7 +267,7 @@ module ActionView # date_select("article", "written_on", default: 3.days.from_now) # # # Generates a date select that when POSTed is stored in the article variable, in the written_on attribute - # # which is set in the form with todays date, regardless of the value in the Active Record object. + # # which is set in the form with today's date, regardless of the value in the Active Record object. # date_select("article", "written_on", selected: Date.today) # # # Generates a date select that when POSTed is stored in the credit_card variable, in the bill_due attribute |