From e96c15a521f743749a4cc370be43365be6b27624 Mon Sep 17 00:00:00 2001 From: Simon Legner Date: Tue, 28 May 2019 21:12:45 +0200 Subject: [PATCH] Fix typos in MessageCache Change-Id: I5ede5ad5687144535545248940ca6f676f514900 --- includes/cache/MessageCache.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/cache/MessageCache.php b/includes/cache/MessageCache.php index 328cc2f8e0..b0716b18b3 100644 --- a/includes/cache/MessageCache.php +++ b/includes/cache/MessageCache.php @@ -217,7 +217,7 @@ class MessageCache { /** * Try to load the cache from APC. * - * @param string $code Optional language code, see documenation of load(). + * @param string $code Optional language code, see documentation of load(). * @return array|bool The cache array, or false if not in cache. */ protected function getLocalCache( $code ) { @@ -342,7 +342,7 @@ class MessageCache { } elseif ( $hashVolatile ) { # DB results are replica DB lag prone until the holdoff TTL passes. # By then, updates should be reflected in loadFromDBWithLock(). - # One thread renerates the cache while others use old values. + # One thread regenerates the cache while others use old values. $where[] = 'global cache is expired/volatile'; $staleCache = $cache; } else { @@ -379,7 +379,7 @@ class MessageCache { break; } elseif ( $loadStatus === 'cantacquire' ) { # Wait for the other thread to finish, then retry. Normally, - # the memcached get() will then yeild the other thread's result. + # the memcached get() will then yield the other thread's result. $where[] = 'waited for other thread to complete'; $this->getReentrantScopedLock( $cacheKey ); } else { -- 2.20.1