diff options
author | Abdelkader Boudih <terminale@gmail.com> | 2015-03-05 08:53:56 +0000 |
---|---|---|
committer | Abdelkader Boudih <terminale@gmail.com> | 2015-03-05 08:53:56 +0000 |
commit | 529132ee7f8e158f0778a80bf4fe0f9554afe481 (patch) | |
tree | 683eacb01e0de9df67c18760ace206f8bd98b5e1 | |
parent | 8266fe3788100a9ebcf1b22cd70a12b49115ce41 (diff) | |
parent | 38a49f3c1b92e4f098640fc9be8dddce8e5d2af2 (diff) | |
download | rails-529132ee7f8e158f0778a80bf4fe0f9554afe481.tar.gz rails-529132ee7f8e158f0778a80bf4fe0f9554afe481.tar.bz2 rails-529132ee7f8e158f0778a80bf4fe0f9554afe481.zip |
Merge pull request #19206 from sivsushruth/doc_fix
Doc fix [ci skip]
-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 |