diff options
author | Yves Senn <yves.senn@gmail.com> | 2014-02-03 16:42:02 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2014-02-03 16:42:02 +0100 |
commit | dd493d3b6f25147227db4c5d119d6b48c31f42e6 (patch) | |
tree | 2e6f673f424c0f75f02848e5abd276c74f6487d7 | |
parent | 06dde5fbf5a6a2446564d948578f8a138b5aebac (diff) | |
download | rails-dd493d3b6f25147227db4c5d119d6b48c31f42e6.tar.gz rails-dd493d3b6f25147227db4c5d119d6b48c31f42e6.tar.bz2 rails-dd493d3b6f25147227db4c5d119d6b48c31f42e6.zip |
docs, be clear that `options` is a hash. Closes #11904. [ci skip].
-rw-r--r-- | activesupport/lib/active_support/cache.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/cache.rb b/activesupport/lib/active_support/cache.rb index 53154aef27..2b7f5943b5 100644 --- a/activesupport/lib/active_support/cache.rb +++ b/activesupport/lib/active_support/cache.rb @@ -452,7 +452,7 @@ module ActiveSupport # Clear the entire cache. Be careful with this method since it could # affect other processes if shared cache is being used. # - # Options are passed to the underlying cache implementation. + # The options hash is passed to the underlying cache implementation. # # All implementations may not support this method. def clear(options = nil) |