aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_support_core_extensions.md
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2015-08-24 04:30:41 +0000
committerVijay Dev <vijaydev.cse@gmail.com>2015-08-24 04:32:24 +0000
commitbc36ffeec05692777f4ece09978a321feed2d818 (patch)
tree19d0ed4de0635029b42ee77ccf4cd1ddc4f38def /guides/source/active_support_core_extensions.md
parent5bcb454ba4f980419ea18bb4bdf3b01072e1e864 (diff)
downloadrails-bc36ffeec05692777f4ece09978a321feed2d818.tar.gz
rails-bc36ffeec05692777f4ece09978a321feed2d818.tar.bz2
rails-bc36ffeec05692777f4ece09978a321feed2d818.zip
Revert "[ci skip] Fix to `a, b or c` format"
This reverts commit 9876a16904f817e11713bc85479dd70da1de454b. Reason: Oxford commas are preferred. This is now documented in the documentation guidelines.
Diffstat (limited to 'guides/source/active_support_core_extensions.md')
-rw-r--r--guides/source/active_support_core_extensions.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_support_core_extensions.md b/guides/source/active_support_core_extensions.md
index 04d46e2cc7..01bf928407 100644
--- a/guides/source/active_support_core_extensions.md
+++ b/guides/source/active_support_core_extensions.md
@@ -3303,7 +3303,7 @@ Date.new(2010, 2, 28).advance(days: 1).advance(months: 1)
#### Changing Components
-The method `change` allows you to get a new date which is the same as the receiver except for the given year, month or day:
+The method `change` allows you to get a new date which is the same as the receiver except for the given year, month, or day:
```ruby
Date.new(2010, 12, 23).change(year: 2011, month: 11)