diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2017-05-27 14:34:53 +0200 |
---|---|---|
committer | Kasper Timm Hansen <kaspth@gmail.com> | 2017-05-27 14:34:53 +0200 |
commit | 3a131b6c008eed58fddfa23f2787d9eef657331a (patch) | |
tree | 13570f280f97960b79e9dd6932e25f4b5e9ab934 /activesupport | |
parent | 9dc1871acb467abb18ba4e452d2a7c8039799bcd (diff) | |
download | rails-3a131b6c008eed58fddfa23f2787d9eef657331a.tar.gz rails-3a131b6c008eed58fddfa23f2787d9eef657331a.tar.bz2 rails-3a131b6c008eed58fddfa23f2787d9eef657331a.zip |
[ci skip] Fix spelling that's a bit of an overreach.
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/current_attributes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/current_attributes.rb b/activesupport/lib/active_support/current_attributes.rb index 6b859cc6cc..2251f56aef 100644 --- a/activesupport/lib/active_support/current_attributes.rb +++ b/activesupport/lib/active_support/current_attributes.rb @@ -1,6 +1,6 @@ module ActiveSupport # Abstract super class that provides a thread-isolated attributes singleton, which resets automatically - # before and after reach request. This allows you to keep all the per-request attributes easily + # before and after each request. This allows you to keep all the per-request attributes easily # available to the whole system. # # The following full app-like example demonstrates how to use a Current class to |