mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Do not use hard tabs in CHANGELOGs [ci skip]
It doesn't work as indentation preperly.
ba7634d304/activesupport/CHANGELOG.md
This commit is contained in:
parent
ba7634d304
commit
457c815c93
1 changed files with 6 additions and 6 deletions
|
@ -3,15 +3,15 @@
|
|||
|
||||
Before:
|
||||
|
||||
crypt = ActiveSupport::MessageEncryptor.new('long_secret')
|
||||
crypt.decrypt_and_verify(encrypted_message, on_rotation: proc { ... })
|
||||
crypt.decrypt_and_verify(another_encrypted_message, on_rotation: proc { ... })
|
||||
crypt = ActiveSupport::MessageEncryptor.new('long_secret')
|
||||
crypt.decrypt_and_verify(encrypted_message, on_rotation: proc { ... })
|
||||
crypt.decrypt_and_verify(another_encrypted_message, on_rotation: proc { ... })
|
||||
|
||||
After:
|
||||
|
||||
crypt = ActiveSupport::MessageEncryptor.new('long_secret', on_rotation: proc { ... })
|
||||
crypt.decrypt_and_verify(encrypted_message)
|
||||
crypt.decrypt_and_verify(another_encrypted_message)
|
||||
crypt = ActiveSupport::MessageEncryptor.new('long_secret', on_rotation: proc { ... })
|
||||
crypt.decrypt_and_verify(encrypted_message)
|
||||
crypt.decrypt_and_verify(another_encrypted_message)
|
||||
|
||||
*Edouard Chin*
|
||||
|
||||
|
|
Loading…
Reference in a new issue