mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix broken markup in CHANGELOG [ci skip]
65bdd6ad08/activesupport/CHANGELOG.md
This commit is contained in:
parent
8024179d60
commit
378dd7a4a8
1 changed files with 9 additions and 8 deletions
|
@ -5,18 +5,19 @@
|
|||
|
||||
Before:
|
||||
|
||||
'foobar'.truncate(5).frozen?
|
||||
=> true
|
||||
'foobar'.truncate(6).frozen?
|
||||
=> false
|
||||
'foobar'.truncate(5).frozen?
|
||||
# => true
|
||||
'foobar'.truncate(6).frozen?
|
||||
# => false
|
||||
|
||||
After:
|
||||
|
||||
'foobar'.truncate(5).frozen?
|
||||
=> false
|
||||
'foobar'.truncate(6).frozen?
|
||||
=> false
|
||||
'foobar'.truncate(5).frozen?
|
||||
# => false
|
||||
'foobar'.truncate(6).frozen?
|
||||
# => false
|
||||
|
||||
*Jordan Thomas*
|
||||
|
||||
|
||||
Please check [6-0-stable](https://github.com/rails/rails/blob/6-0-stable/activesupport/CHANGELOG.md) for previous changes.
|
||||
|
|
Loading…
Reference in a new issue