From aef6b7996741c21f7c95004017aeb805f8a4decb Mon Sep 17 00:00:00 2001 From: Semyon Pupkov Date: Tue, 8 Sep 2015 23:37:17 +0500 Subject: Fix typo in activemodel changelog --- activemodel/CHANGELOG.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/activemodel/CHANGELOG.md b/activemodel/CHANGELOG.md index d7e64b8bf0..bf0120122d 100644 --- a/activemodel/CHANGELOG.md +++ b/activemodel/CHANGELOG.md @@ -1,17 +1,17 @@ * Validate multiple contexts on `valid?` and `invalid?` at once. Example: - + class Person include ActiveModel::Validations - + attr_reader :name, :title validates_presence_of :name, on: :create validates_presence_of :title, on: :update end - + person = Person.new - person.valid?([:create, :update]) # => true + person.valid?([:create, :update]) # => false person.errors.messages # => {:name=>["can't be blank"], :title=>["can't be blank"]} *Dmitry Polushkin* -- cgit v1.2.3