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

a -> an [ci skip]

This commit is contained in:
Ryuta Kamizono 2020-07-28 19:22:37 +09:00
parent 47aee7ff3b
commit c6f02cbb56
2 changed files with 3 additions and 3 deletions

View file

@ -401,7 +401,7 @@ module ActiveRecord
end
# Returns the column object for the named attribute.
# Returns a +ActiveRecord::ConnectionAdapters::NullColumn+ if the
# Returns an +ActiveRecord::ConnectionAdapters::NullColumn+ if the
# named attribute does not exist.
#
# class Person < ActiveRecord::Base

View file

@ -47,9 +47,9 @@ module ActiveRecord
end
end
# Works like +find_signed+, but will raise a +ActiveSupport::MessageVerifier::InvalidSignature+
# Works like +find_signed+, but will raise an +ActiveSupport::MessageVerifier::InvalidSignature+
# exception if the +signed_id+ has either expired, has a purpose mismatch, is for another record,
# or has been tampered with. It will also raise a +ActiveRecord::RecordNotFound+ exception if
# or has been tampered with. It will also raise an +ActiveRecord::RecordNotFound+ exception if
# the valid signed id can't find a record.
#
# === Examples