From a222cc9137580769caaa564f500f59472c518693 Mon Sep 17 00:00:00 2001 From: spawnia Date: Sun, 23 Jun 2019 21:08:49 +0200 Subject: [PATCH] Reword a comment --- src/Utils/MixedStore.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Utils/MixedStore.php b/src/Utils/MixedStore.php index 469abaa..8513fd5 100644 --- a/src/Utils/MixedStore.php +++ b/src/Utils/MixedStore.php @@ -21,7 +21,7 @@ use function is_string; * Similar to PHP array, but allows any type of data to act as key (including arrays, objects, scalars) * * Note: unfortunately when storing array as key - access and modification is O(N) - * (yet this should be really rare case and should be avoided when possible) + * (yet this should rarely be the case and should be avoided when possible) */ class MixedStore implements ArrayAccess {