[ci skip] Fix variable name

This commit is contained in:
Arthur Vieira 2016-04-04 18:17:04 -03:00
parent 0f51dda718
commit 723a7c8ef4
1 changed files with 2 additions and 2 deletions

View File

@ -1217,9 +1217,9 @@ person.errors[:name]
person.errors.clear
person.errors.empty? # => true
p.save # => false
person.save # => false
p.errors[:name]
person.errors[:name]
# => ["can't be blank", "is too short (minimum is 3 characters)"]
```