diff options
author | yui-knk <spiketeika@gmail.com> | 2015-07-30 13:52:22 +0900 |
---|---|---|
committer | yui-knk <spiketeika@gmail.com> | 2015-07-30 13:52:22 +0900 |
commit | 9876a16904f817e11713bc85479dd70da1de454b (patch) | |
tree | 05e382e11627db5670639d64fb92511f40ed38b0 /guides | |
parent | 33a72824b8e355b5f2666816fb62573b5bebc1ae (diff) | |
download | rails-9876a16904f817e11713bc85479dd70da1de454b.tar.gz rails-9876a16904f817e11713bc85479dd70da1de454b.tar.bz2 rails-9876a16904f817e11713bc85479dd70da1de454b.zip |
[ci skip] Fix to `a, b or c` format
Diffstat (limited to 'guides')
-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 01bf928407..04d46e2cc7 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) |