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

Fix typo [ci skip]

This commit is contained in:
José Corcuera 2012-09-12 10:04:29 -05:00
parent 17990994e9
commit 1affc30cd5

View file

@ -48,7 +48,7 @@ We can see how it works by looking at some +rails console+ output:
<ruby>
>> p = Person.new(:name => "John Doe")
=> #<Person id: nil, name: "John Doe", created_at: nil, :updated_at: nil>
=> #<Person id: nil, name: "John Doe", created_at: nil, updated_at: nil>
>> p.new_record?
=> true
>> p.save