diff options
author | Sushruth Sivaramakrishnan <sivsushruth@gmail.com> | 2015-03-05 14:15:17 +0530 |
---|---|---|
committer | Sushruth Sivaramakrishnan <sivsushruth@gmail.com> | 2015-03-05 14:15:17 +0530 |
commit | 38a49f3c1b92e4f098640fc9be8dddce8e5d2af2 (patch) | |
tree | 683eacb01e0de9df67c18760ace206f8bd98b5e1 /activesupport/lib/active_support/cache/strategy | |
parent | 8a5475cb5ffdba9b95d7ae1d2d323540522fc9d6 (diff) | |
download | rails-38a49f3c1b92e4f098640fc9be8dddce8e5d2af2.tar.gz rails-38a49f3c1b92e4f098640fc9be8dddce8e5d2af2.tar.bz2 rails-38a49f3c1b92e4f098640fc9be8dddce8e5d2af2.zip |
Doc fix [ci skip]
Diffstat (limited to 'activesupport/lib/active_support/cache/strategy')
-rw-r--r-- | activesupport/lib/active_support/cache/strategy/local_cache.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/cache/strategy/local_cache.rb b/activesupport/lib/active_support/cache/strategy/local_cache.rb index 73c6b3cb88..a913736fc3 100644 --- a/activesupport/lib/active_support/cache/strategy/local_cache.rb +++ b/activesupport/lib/active_support/cache/strategy/local_cache.rb @@ -39,7 +39,7 @@ module ActiveSupport @data = {} end - # Don't allow synchronizing since it isn't thread safe, + # Don't allow synchronizing since it isn't thread safe. def synchronize # :nodoc: yield end |