aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-09-11 04:53:25 +0900
committerGitHub <noreply@github.com>2018-09-11 04:53:25 +0900
commit6babd5c32bb62757acc092df4d11f6308080ea81 (patch)
treeb36241d5af2140d197f869732806952329a10571
parent12b32d804996c6bb3d215a22762c0c1a27f223d3 (diff)
parenta27c535cf10ec1f7c9ac9fa38c95519bb7dbace5 (diff)
downloadrails-6babd5c32bb62757acc092df4d11f6308080ea81.tar.gz
rails-6babd5c32bb62757acc092df4d11f6308080ea81.tar.bz2
rails-6babd5c32bb62757acc092df4d11f6308080ea81.zip
Merge pull request #33837 from nickstanish/master
docs: Fix typo in activerecord/CHANGELOG.md [ci skip]
-rw-r--r--activerecord/CHANGELOG.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 0af5b8caba..968cce39c1 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -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*