Skip to content

Commit

Permalink
Do not use hard tabs in CHANGELOGs [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
kamipo committed Jul 11, 2019
1 parent ba7634d commit 457c815
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions activesupport/CHANGELOG.md
Expand Up @@ -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*

Expand Down

0 comments on commit 457c815

Please sign in to comment.