From be4a44f1f974e7edf2e602708002599c14ee4e49 Mon Sep 17 00:00:00 2001 From: Bernard Kroes Date: Sat, 21 Apr 2012 22:16:38 +0200 Subject: Fixed expected value in comment. Removed duplicate lines in example. --- activemodel/README.rdoc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/activemodel/README.rdoc b/activemodel/README.rdoc index 7d13a0123b..9b05384792 100644 --- a/activemodel/README.rdoc +++ b/activemodel/README.rdoc @@ -26,7 +26,7 @@ to integrate with Action Pack out of the box: ActiveModel::Model. person = Person.new(:name => 'bob', :age => '18') person.name # => 'bob' person.age # => 18 - person.valid? # => false + person.valid? # => true It includes model name introspections, conversions, translations and validations, resulting in a class suitable to be used with Action Pack. @@ -116,9 +116,6 @@ behavior out of the box: person.errors.full_messages # => ["Name can not be nil"] - person.errors.full_messages - # => ["Name can not be nil"] - {Learn more}[link:classes/ActiveModel/Errors.html] * Model name introspection -- cgit v1.2.3