mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix small typo in docs
[ci skip]
This commit is contained in:
parent
b414ca3f17
commit
0aebca9f25
2 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ module ActiveSupport
|
|||
# crypt.encrypt_and_sign(parcel, expires_in: 1.month)
|
||||
# crypt.encrypt_and_sign(doowad, expires_at: Time.now.end_of_year)
|
||||
#
|
||||
# Then the messages can be verified and returned upto the expire time.
|
||||
# Then the messages can be verified and returned up to the expire time.
|
||||
# Thereafter, verifying returns +nil+.
|
||||
#
|
||||
# === Rotating keys
|
||||
|
|
|
@ -71,7 +71,7 @@ module ActiveSupport
|
|||
# @verifier.generate(parcel, expires_in: 1.month)
|
||||
# @verifier.generate(doowad, expires_at: Time.now.end_of_year)
|
||||
#
|
||||
# Then the messages can be verified and returned upto the expire time.
|
||||
# Then the messages can be verified and returned up to the expire time.
|
||||
# Thereafter, the +verified+ method returns +nil+ while +verify+ raises
|
||||
# <tt>ActiveSupport::MessageVerifier::InvalidSignature</tt>.
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue