diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2019-07-11 09:16:48 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2019-07-11 09:16:48 +0900 |
commit | 457c815c93010b1884f675753daf4fc6950fb6af (patch) | |
tree | 8cd64987ce07d44b5e642a5df0b9dea256ec8a73 /activesupport | |
parent | ba7634d304008a4e6170fd701a2b7e75e1d83aea (diff) | |
download | rails-457c815c93010b1884f675753daf4fc6950fb6af.tar.gz rails-457c815c93010b1884f675753daf4fc6950fb6af.tar.bz2 rails-457c815c93010b1884f675753daf4fc6950fb6af.zip |
Do not use hard tabs in CHANGELOGs [ci skip]
It doesn't work as indentation preperly.
https://github.com/rails/rails/blob/ba7634d304008a4e6170fd701a2b7e75e1d83aea/activesupport/CHANGELOG.md
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/CHANGELOG.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index 29b22bb3f9..24f253fa92 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -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* |