aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorGeorge Claghorn <george.claghorn@gmail.com>2018-04-12 11:38:56 -0400
committerGitHub <noreply@github.com>2018-04-12 11:38:56 -0400
commit5b7de1b70156ed0861e494ab9900c6b87c206a67 (patch)
tree0873cf0617978f615a6547b81c4056f572335bbd /activesupport
parent77e3b4faa4c092212ceed0dc93e8eade33c0b190 (diff)
parent68139de230941c9f17adaec7f535f199be3601fe (diff)
downloadrails-5b7de1b70156ed0861e494ab9900c6b87c206a67.tar.gz
rails-5b7de1b70156ed0861e494ab9900c6b87c206a67.tar.bz2
rails-5b7de1b70156ed0861e494ab9900c6b87c206a67.zip
Merge pull request #32542 from teddywing/active-support-cache-store--fix-end-tag-in-read-method-documentation
Cache::Store#read: Fix fixed-width end tag in docs
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/cache.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/cache.rb b/activesupport/lib/active_support/cache.rb
index 6967c164ab..d48a89e7a9 100644
--- a/activesupport/lib/active_support/cache.rb
+++ b/activesupport/lib/active_support/cache.rb
@@ -333,8 +333,9 @@ module ActiveSupport
# the cache with the given key, then that data is returned. Otherwise,
# +nil+ is returned.
#
- # Note, if data was written with the <tt>:expires_in<tt> or <tt>:version</tt> options,
- # both of these conditions are applied before the data is returned.
+ # Note, if data was written with the <tt>:expires_in</tt> or
+ # <tt>:version</tt> options, both of these conditions are applied before
+ # the data is returned.
#
# Options are passed to the underlying cache implementation.
def read(name, options = nil)