aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-03-11 17:31:25 +0900
committerRyuta Kamizono <kamipo@gmail.com>2017-03-11 17:31:25 +0900
commit2e752d18b37498cfaa204567342edfc79783edcb (patch)
treedcee2b23415ae49a0de5c8f4ee797a9cc05f2aa4 /activesupport
parent744d388a90bed2958210b5779d3fc3f9ad0cf550 (diff)
downloadrails-2e752d18b37498cfaa204567342edfc79783edcb.tar.gz
rails-2e752d18b37498cfaa204567342edfc79783edcb.tar.bz2
rails-2e752d18b37498cfaa204567342edfc79783edcb.zip
Fix indentation and formatting in CHANGELOGs [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/CHANGELOG.md34
1 files changed, 17 insertions, 17 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index 024202de9c..2cee8375b7 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -260,7 +260,7 @@
to avoid duplication of duration constants through the codebase and
eliminate creation of intermediate durations.
- *Andrey Novikov, Andrew White*
+ *Andrey Novikov*, *Andrew White*
* Change return value of `Rational#duplicable?`, `ComplexClass#duplicable?`
to false.
@@ -499,28 +499,28 @@
*John Gesimondo*
* `travel/travel_to` travel time helpers, now raise on nested calls,
- as this can lead to confusing time stubbing.
+ as this can lead to confusing time stubbing.
- Instead of:
+ Instead of:
- travel_to 2.days.from_now do
- # 2 days from today
- travel_to 3.days.from_now do
- # 5 days from today
- end
- end
+ travel_to 2.days.from_now do
+ # 2 days from today
+ travel_to 3.days.from_now do
+ # 5 days from today
+ end
+ end
- preferred way to achieve above is:
+ preferred way to achieve above is:
- travel 2.days do
- # 2 days from today
- end
+ travel 2.days do
+ # 2 days from today
+ end
- travel 5.days do
- # 5 days from today
- end
+ travel 5.days do
+ # 5 days from today
+ end
- *Vipul A M*
+ *Vipul A M*
* Support parsing JSON time in ISO8601 local time strings in
`ActiveSupport::JSON.decode` when `parse_json_times` is enabled.