1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Update CHANGELOG.md

This commit is contained in:
Nick Stanish 2018-09-10 14:43:07 -05:00 committed by GitHub
parent 12b32d8049
commit a27c535cf1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@
```
Rails.application.config.filter_parameters += [:credit_card_number]
Account.last.insepct # => #<Account id: 123, credit_card_number: [FILTERED] ...>
Account.last.inspect # => #<Account id: 123, credit_card_number: [FILTERED] ...>
```
*Zhang Kang*