From: Niklas Laxström Date: Wed, 8 Aug 2018 07:31:54 +0000 (+0200) Subject: MapCacheLRU: Fix a typo in a comment X-Git-Tag: 1.34.0-rc.0~4511^2 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/%22%24path/%7B%24disabledImages%5B%24type%5D%7D/li_csstidy.html?a=commitdiff_plain;h=3466da043dde307228f1bd0a9a6bf217446aa368;p=lhc%2Fweb%2Fwiklou.git MapCacheLRU: Fix a typo in a comment Change-Id: I573623f219f83528ea46ee31d656fce935b3b431 --- diff --git a/includes/libs/MapCacheLRU.php b/includes/libs/MapCacheLRU.php index ad5e58d808..864880aba3 100644 --- a/includes/libs/MapCacheLRU.php +++ b/includes/libs/MapCacheLRU.php @@ -64,7 +64,7 @@ class MapCacheLRU implements IExpiringStore, Serializable { Assert::parameter( $maxKeys > 0, '$maxKeys', 'must be above zero' ); $this->maxCacheKeys = $maxKeys; - // Use the current time as the default "as of" timesamp of entries + // Use the current time as the default "as of" timestamp of entries $this->epoch = $this->getCurrentTime(); }