From: Yuri Astrakhan Date: Sun, 14 Dec 2014 00:44:38 +0000 (+0300) Subject: Minor spelling comment fix X-Git-Tag: 1.31.0-rc.0~12967 X-Git-Url: https://git.cyclocoop.org/%7B%7B%20url_for%28?a=commitdiff_plain;h=573b1194b8f2d394a198f0d88f6fc55f8806a471;p=lhc%2Fweb%2Fwiklou.git Minor spelling comment fix Change-Id: Ic56f4e73e56e6dca4825c93b0a95f4d9de835fd4 --- diff --git a/includes/parser/CacheTime.php b/includes/parser/CacheTime.php index 94abc26609..e382cf3b81 100644 --- a/includes/parser/CacheTime.php +++ b/includes/parser/CacheTime.php @@ -34,7 +34,7 @@ class CacheTime { public $mVersion = Parser::VERSION, # Compatibility check $mCacheTime = '', # Time when this object was generated, or -1 for uncacheable. Used in ParserCache. - $mCacheExpiry = null, # Seconds after which the object should expire, use 0 for uncachable. Used in ParserCache. + $mCacheExpiry = null, # Seconds after which the object should expire, use 0 for uncacheable. Used in ParserCache. $mContainsOldMagic, # Boolean variable indicating if the input contained variables like {{CURRENTDAY}} $mCacheRevisionId = null; # Revision ID that was parsed @@ -123,7 +123,7 @@ class CacheTime { if ( $this->mCacheTime < 0 ) { return 0; - } // old-style marker for "not cachable" + } // old-style marker for "not cacheable" $expire = $this->mCacheExpiry; @@ -138,7 +138,7 @@ class CacheTime { } if ( $expire <= 0 ) { - return 0; // not cachable + return 0; // not cacheable } else { return $expire; }