From 25e6d5fcc2b7599907ec9571a12c1d5c8f9c0dcb Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Sun, 7 Sep 2025 13:12:46 +0200 Subject: [PATCH] fix typo (s/sees/seeds/) --- cluster_library.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster_library.c b/cluster_library.c index 6b45423..c616af7 100644 --- a/cluster_library.c +++ b/cluster_library.c @@ -3105,7 +3105,7 @@ static zend_string **get_valid_seeds(HashTable *input, uint32_t *nseeds) { zval *z_seed; zend_string *zkey, **seeds = NULL; - /* Short circuit if we don't have any sees */ + /* Short circuit if we don't have any seeds */ count = zend_hash_num_elements(input); if (count == 0) return NULL;