diff options
author | Vipul A M <vipulnsward@gmail.com> | 2019-02-15 21:16:18 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-15 21:16:18 +0530 |
commit | 607470c9b40388a5fc454ec9363c7af2d51fcf1e (patch) | |
tree | 18025c40e91d82dc4e36eab3121394b5d861edda /activesupport/lib/active_support/message_verifier.rb | |
parent | b414ca3f17c76fb1cc43d79fbffd2f3ed95acdde (diff) | |
parent | 0aebca9f25724d75178d31c88c0ee2ac1474ec1a (diff) | |
download | rails-607470c9b40388a5fc454ec9363c7af2d51fcf1e.tar.gz rails-607470c9b40388a5fc454ec9363c7af2d51fcf1e.tar.bz2 rails-607470c9b40388a5fc454ec9363c7af2d51fcf1e.zip |
Merge pull request #35288 from conradbeach/fix-typos
Fix Small Typo in Docs [ci skip]
Diffstat (limited to 'activesupport/lib/active_support/message_verifier.rb')
-rw-r--r-- | activesupport/lib/active_support/message_verifier.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/message_verifier.rb b/activesupport/lib/active_support/message_verifier.rb index 64c557bec6..c4a4afe95f 100644 --- a/activesupport/lib/active_support/message_verifier.rb +++ b/activesupport/lib/active_support/message_verifier.rb @@ -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>. # |