aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activerecord/CHANGELOG2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 143de81925..acdb40592f 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -62,7 +62,7 @@ a URI that specifies the connection configuration. For example:
has_one :account
end
- user.build_account{ |a| a.credit_limit => 100.0 }
+ user.build_account{ |a| a.credit_limit = 100.0 }
The block is called after the instance has been initialized. [Andrew White]