From 3466da043dde307228f1bd0a9a6bf217446aa368 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Wed, 8 Aug 2018 09:31:54 +0200 Subject: [PATCH] MapCacheLRU: Fix a typo in a comment Change-Id: I573623f219f83528ea46ee31d656fce935b3b431 --- includes/libs/MapCacheLRU.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } -- 2.20.1