aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsoartec-lab <info@soartec-lab.work>2019-06-16 00:00:24 +0900
committersoartec-lab <info@soartec-lab.work>2019-06-16 00:00:24 +0900
commit619bb474809d10b46ec7e450c070c3da1503ede5 (patch)
treec55429f44735410657daad51a57f323fe1cac386
parentb388061947c087d0635619d7f0b3a2b1cc91a806 (diff)
downloadrails-619bb474809d10b46ec7e450c070c3da1503ede5.tar.gz
rails-619bb474809d10b46ec7e450c070c3da1503ede5.tar.bz2
rails-619bb474809d10b46ec7e450c070c3da1503ede5.zip
Delete 'ruby' in the description of the method defined in rails [skip ci]
-rw-r--r--guides/source/active_support_core_extensions.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/active_support_core_extensions.md b/guides/source/active_support_core_extensions.md
index 21901a7158..e9ebf6470c 100644
--- a/guides/source/active_support_core_extensions.md
+++ b/guides/source/active_support_core_extensions.md
@@ -3416,7 +3416,7 @@ NOTE: Defined in `active_support/core_ext/date_and_time/calculations.rb`.
#### `prev_day`, `next_day`
-In Ruby 1.9 `prev_day` and `next_day` return the date in the last or next day:
+`prev_day` and `next_day` return the date in the last or next day:
```ruby
d = Date.new(2010, 5, 8) # => Sat, 08 May 2010
@@ -3428,7 +3428,7 @@ NOTE: Defined in `active_support/core_ext/date_and_time/calculations.rb`.
#### `prev_month`, `next_month`
-In Ruby 1.9 `prev_month` and `next_month` return the date with the same day in the last or next month:
+`prev_month` and `next_month` return the date with the same day in the last or next month:
```ruby
d = Date.new(2010, 5, 8) # => Sat, 08 May 2010
@@ -3449,7 +3449,7 @@ NOTE: Defined in `active_support/core_ext/date_and_time/calculations.rb`.
#### `prev_year`, `next_year`
-In Ruby 1.9 `prev_year` and `next_year` return a date with the same day/month in the last or next year:
+`prev_year` and `next_year` return a date with the same day/month in the last or next year:
```ruby
d = Date.new(2010, 5, 8) # => Sat, 08 May 2010