We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82becbe commit 1eb7a9dCopy full SHA for 1eb7a9d
guides/source/active_record_validations.md
@@ -81,7 +81,7 @@ validations.
81
There are two kinds of Active Record objects - those that correspond to a row
82
inside your database and those that do not. When you instantiate a new object,
83
using the `new` method, the object does not get saved in the database as yet.
84
-Once you call `save` on that object then will it be saved into the appropriate
+Once you call `save` on that object, it will be saved into the appropriate
85
database table. Active Record uses an instance method called `persisted?` (and
86
its inverse `new_record?`) to determine whether an object is already in the
87
database or not. Consider the following Active Record class:
0 commit comments