From bc36ffeec05692777f4ece09978a321feed2d818 Mon Sep 17 00:00:00 2001 From: Vijay Dev Date: Mon, 24 Aug 2015 04:30:41 +0000 Subject: [PATCH] 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. --- guides/source/active_support_core_extensions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- GitLab