Skip to content

Commit 4a38e91

Browse files
authored
Merge pull request rails#55143 from izaguirrejoe/fix-docs
Docs: Fix grammar in Active Record validations guide [ci skip]
2 parents 99bacb5 + 1eb7a9d commit 4a38e91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guides/source/active_record_validations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ validations.
8181
There are two kinds of Active Record objects - those that correspond to a row
8282
inside your database and those that do not. When you instantiate a new object,
8383
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
84+
Once you call `save` on that object, it will be saved into the appropriate
8585
database table. Active Record uses an instance method called `persisted?` (and
8686
its inverse `new_record?`) to determine whether an object is already in the
8787
database or not. Consider the following Active Record class:

0 commit comments

Comments
 (0)