MapCacheLRU: Fix a typo in a comment
authorNiklas Laxström <niklas.laxstrom@gmail.com>
Wed, 8 Aug 2018 07:31:54 +0000 (09:31 +0200)
committerNiklas Laxström <niklas.laxstrom@gmail.com>
Wed, 8 Aug 2018 07:31:54 +0000 (09:31 +0200)
Change-Id: I573623f219f83528ea46ee31d656fce935b3b431

includes/libs/MapCacheLRU.php

index ad5e58d..864880a 100644 (file)
@@ -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();
        }