From 4b10585128fcaf3270ece6829c3511fbbba529ac Mon Sep 17 00:00:00 2001 From: Pirogov Evgenij Date: Sat, 14 May 2011 15:40:32 -0700 Subject: Clean up redundant backslashes --- actionpack/lib/action_view/helpers/date_helper.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'actionpack/lib/action_view/helpers') diff --git a/actionpack/lib/action_view/helpers/date_helper.rb b/actionpack/lib/action_view/helpers/date_helper.rb index 853ab061d2..c78c03a5eb 100644 --- a/actionpack/lib/action_view/helpers/date_helper.rb +++ b/actionpack/lib/action_view/helpers/date_helper.rb @@ -841,14 +841,14 @@ module ActionView # Build select option html from date value and options. # build_options(15, :start => 1, :end => 31) # => " - # - # ..." + # + # ..." # # If :step options is passed # build_options(15, :start => 1, :end => 31, :step => 2) # => " - # - # ..." + # + # ..." def build_options(selected, options = {}) start = options.delete(:start) || 0 stop = options.delete(:end) || 59 -- cgit v1.2.3