Update CHANGELOG example

CHANGELOG was not updated with subsequent changes to the PR #47708
This commit is contained in:
Christopher Lake 2023-04-21 15:35:53 -07:00 committed by GitHub
parent 484dcb6538
commit 42a4fcecf2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,12 +7,12 @@
```ruby
user = User.new(password: "a" * 73) # 73 characters
user.valid? # => false
user.errors[:password] # => ["is too long (maximum is 72 characters)"]
user.errors[:password] # => ["is too long"]
user = User.new(password: "あ" * 25) # 25 characters, 75 bytes
user.valid? # => false
user.errors[:password] # => ["is too long (maximum is 72 bytes)"]
user.errors[:password] # => ["is too long"]
```
*ChatGPT*, *Guillermo Iguaran*