1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix misprint in AR changelog

This commit is contained in:
Alexey Vakhov 2012-05-16 09:06:01 +04:00
parent 20f049fb50
commit 2baa8ba953

View file

@ -633,7 +633,7 @@
has_one :account has_one :account
end 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* The block is called after the instance has been initialized. *Andrew White*