diff options
-rw-r--r-- | guides/source/active_support_core_extensions.md | 2 |
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) |