Skip to content

Commit

Permalink
chore: correct sorted set remove elements mention in docstrings (#228)
Browse files Browse the repository at this point in the history
Documentation tweak for singular vs plural.
  • Loading branch information
malandis authored Oct 17, 2024
1 parent 1f44343 commit d8fbfca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Cache/CacheClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -2021,7 +2021,7 @@ public function sortedSetRemoveElement(string $cacheName, string $sortedSetName,
* will provide the result of the sorted set remove elements operation upon a blocking call to
* wait.
* <code>$response = $responseFuture->wait();</code><br />
* The response represents the result of the sorted set remove element operation.
* The response represents the result of the sorted set remove elements operation.
* This result is resolved to a type-safe object of one of the following
* types:<br>
* * SortedSetRemoveElementsSuccess<br>
Expand All @@ -2046,7 +2046,7 @@ public function sortedSetRemoveElementsAsync(string $cacheName, string $sortedSe
* @param string $cacheName Name of the cache that contains the sorted set.
* @param string $sortedSetName The set to remove the elements from.
* @param array $values The values to remove.
* @return SortedSetRemoveElementsResponse Represents the result of the sorted set remove element operation.
* @return SortedSetRemoveElementsResponse Represents the result of the sorted set remove elements operation.
* This result is resolved to a type-safe object of one of the following types:<br>
* * SortedSetRemoveElementsSuccess<br>
* * SortedSetRemoveElementsError<br>
Expand Down

0 comments on commit d8fbfca

Please sign in to comment.