From 8ee46636b7fe043333a715757691cda881ceb796 Mon Sep 17 00:00:00 2001 From: Hartley McGuire Date: Sat, 30 Dec 2023 23:05:34 -0500 Subject: [PATCH] Remove self referential links from MemoryStore --- activesupport/lib/active_support/cache/memory_store.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/activesupport/lib/active_support/cache/memory_store.rb b/activesupport/lib/active_support/cache/memory_store.rb index eb7626075cbba..2fe57190d8e7b 100644 --- a/activesupport/lib/active_support/cache/memory_store.rb +++ b/activesupport/lib/active_support/cache/memory_store.rb @@ -18,13 +18,13 @@ module Cache # a cleanup will occur which tries to prune the cache down to three quarters # of the maximum size by removing the least recently used entries. # - # Unlike other Cache store implementations, MemoryStore does not compress - # values by default. MemoryStore does not benefit from compression as much + # Unlike other Cache store implementations, +MemoryStore+ does not compress + # values by default. +MemoryStore+ does not benefit from compression as much # as other Store implementations, as it does not send data over a network. # However, when compression is enabled, it still pays the full cost of # compression in terms of cpu use. # - # MemoryStore is thread-safe. + # +MemoryStore+ is thread-safe. class MemoryStore < Store module DupCoder # :nodoc: extend self