From: Simon Legner Date: Tue, 28 May 2019 19:12:45 +0000 (+0200) Subject: Fix typos in MessageCache X-Git-Tag: 1.34.0-rc.0~1569^2 X-Git-Url: http://git.cyclocoop.org//%27http:/jquery.khurshid.com/ifixpng.php/%27?a=commitdiff_plain;h=e96c15a521f743749a4cc370be43365be6b27624;p=lhc%2Fweb%2Fwiklou.git Fix typos in MessageCache Change-Id: I5ede5ad5687144535545248940ca6f676f514900 --- 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 {