diff options
author | José Corcuera <jzcorcuera@gmail.com> | 2012-09-12 10:04:29 -0500 |
---|---|---|
committer | José Corcuera <jzcorcuera@gmail.com> | 2012-09-12 10:04:29 -0500 |
commit | 1affc30cd5a3ed91beb41014e203795c78a0db8d (patch) | |
tree | aa587cccea45b8a727d747dbed5864622618911a /guides | |
parent | 17990994e95b420619394e4a94917c34e1fe2663 (diff) | |
download | rails-1affc30cd5a3ed91beb41014e203795c78a0db8d.tar.gz rails-1affc30cd5a3ed91beb41014e203795c78a0db8d.tar.bz2 rails-1affc30cd5a3ed91beb41014e203795c78a0db8d.zip |
Fix typo [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_record_validations_callbacks.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_validations_callbacks.textile b/guides/source/active_record_validations_callbacks.textile index b866337e3f..3f6fb7606f 100644 --- a/guides/source/active_record_validations_callbacks.textile +++ b/guides/source/active_record_validations_callbacks.textile @@ -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 |