diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2018-03-19 08:43:01 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2018-03-19 08:43:01 +0900 |
commit | d91e6f1213146e327b47f2a65776c7f4f347a2d6 (patch) | |
tree | 3659460f554fbcc11dfd1605dd96b80a164453da /activesupport | |
parent | d9736e50d8d6fc9fad32e16ebdc8dcd0a0a3ec61 (diff) | |
download | rails-d91e6f1213146e327b47f2a65776c7f4f347a2d6.tar.gz rails-d91e6f1213146e327b47f2a65776c7f4f347a2d6.tar.bz2 rails-d91e6f1213146e327b47f2a65776c7f4f347a2d6.zip |
Fix unclosed tags in `RedisCacheStore` docs [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/cache/redis_cache_store.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/cache/redis_cache_store.rb b/activesupport/lib/active_support/cache/redis_cache_store.rb index a134bb7095..a1cb6db25d 100644 --- a/activesupport/lib/active_support/cache/redis_cache_store.rb +++ b/activesupport/lib/active_support/cache/redis_cache_store.rb @@ -154,7 +154,7 @@ module ActiveSupport # :url Array -> Redis::Distributed.new([{ url: … }, { url: … }, …]) # # No namespace is set by default. Provide one if the Redis cache - # server is shared with other apps: <tt>namespace: 'myapp-cache'<tt>. + # server is shared with other apps: <tt>namespace: 'myapp-cache'</tt>. # # Compression is enabled by default with a 1kB threshold, so cached # values larger than 1kB are automatically compressed. Disable by |