Index: trunk/phase3/includes/cache/FileCacheBase.php |
— | — | @@ -33,7 +33,7 @@ |
34 | 34 | } |
35 | 35 | |
36 | 36 | /** |
37 | | - * Get the base cache directory (not speficic to this file) |
| 37 | + * Get the base cache directory (not specific to this file) |
38 | 38 | * @return string |
39 | 39 | */ |
40 | 40 | abstract protected function cacheDirectory(); |
— | — | @@ -98,7 +98,7 @@ |
99 | 99 | |
100 | 100 | $cachetime = $this->cacheTimestamp(); |
101 | 101 | $good = ( $timestamp <= $cachetime && $wgCacheEpoch <= $cachetime ); |
102 | | - wfDebug( __METHOD__ . ": cachetime $cachetime, touched '{$timestamp}' epoch {$wgCacheEpoch}, good $good\n"); |
| 102 | + wfDebug( __METHOD__ . ": cachetime $cachetime, touched '{$timestamp}' epoch {$wgCacheEpoch}, good $good\n" ); |
103 | 103 | |
104 | 104 | return $good; |
105 | 105 | } |
— | — | @@ -203,8 +203,8 @@ |
204 | 204 | public function incrMissesRecent( WebRequest $request ) { |
205 | 205 | global $wgMemc; |
206 | 206 | if ( mt_rand( 0, self::MISS_FACTOR - 1 ) == 0 ) { |
207 | | - # Get an large IP range that should include the user |
208 | | - # even if that person's IP address changes... |
| 207 | + # Get a large IP range that should include the user even if that |
| 208 | + # person's IP address changes |
209 | 209 | $ip = $request->getIP(); |
210 | 210 | if ( !IP::isValid( $ip ) ) { |
211 | 211 | return; |