aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-05-04 17:51:15 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-05-04 17:51:15 +0530
commit3d9673d8f6fdb5e330b2a276df288834058a5260 (patch)
treefba92ce97bba236916bab79489eb68c8788390c9 /activemodel
parentb24f1ce13884a86d6d93d0b16e1fc3716360b65a (diff)
parent616de66c55b58479e7da4271a0c990529395440e (diff)
downloadrails-3d9673d8f6fdb5e330b2a276df288834058a5260.tar.gz
rails-3d9673d8f6fdb5e330b2a276df288834058a5260.tar.bz2
rails-3d9673d8f6fdb5e330b2a276df288834058a5260.zip
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'activemodel')
-rw-r--r--activemodel/README.rdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/README.rdoc b/activemodel/README.rdoc
index 9b05384792..1fd75141f8 100644
--- a/activemodel/README.rdoc
+++ b/activemodel/README.rdoc
@@ -25,7 +25,7 @@ to integrate with Action Pack out of the box: <tt>ActiveModel::Model</tt>.
person = Person.new(:name => 'bob', :age => '18')
person.name # => 'bob'
- person.age # => 18
+ person.age # => '18'
person.valid? # => true
It includes model name introspections, conversions, translations and