From 91a18d86f2207fa47176350fb3de5b142648a0fb Mon Sep 17 00:00:00 2001 From: Michael Landis Date: Fri, 18 Oct 2024 11:20:45 -0700 Subject: [PATCH] chore: fix inconsistent comment (#231) The previous PR for sorted set increment score contained a typo in a docstring. --- src/Cache/CacheClient.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Cache/CacheClient.php b/src/Cache/CacheClient.php index 11df354..4423f14 100644 --- a/src/Cache/CacheClient.php +++ b/src/Cache/CacheClient.php @@ -1866,7 +1866,7 @@ public function sortedSetIncrementScoreAsync(string $cacheName, string $sortedSe /** * Increment the score of an element in a sorted set. * - * @param string $cacheName Name of the cache in which to increment the key's value + * @param string $cacheName Name of the cache in which to increment the element's score * @param string $sortedSetName The name of the sorted set in which to increment the element's score * @param string $value The value to increment * @param float $amount The amount by which to increment the score