From db0e70a131f1a3a28cc78cface5b5db87b0d5416 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Thu, 11 May 2023 00:09:37 +0100 Subject: [PATCH] struct/hash.3: Zap spurious space before pointer argument name. Organization: Straylight/Edgeware From: Mark Wooding --- struct/hash.3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/struct/hash.3 b/struct/hash.3 index 5869d89..6093258 100644 --- a/struct/hash.3 +++ b/struct/hash.3 @@ -42,7 +42,7 @@ hash \- low-level hashtable implementation .BI "void hash_destroy(hash_table *" t ); .BI "hash_base **hash_bin(hash_table *" t ", uint32 " hash ); .BI "int hash_extend(hash_table *" t ); -.BI "void hash_remove(hash_table *" t ", hash_base * " b ); +.BI "void hash_remove(hash_table *" t ", hash_base *" b ); .BI "void hash_mkiter(hash_iter *" i ", hash_table *" t ); .BI "hash_base *hash_next(hash_iter *" i ); -- [mdw]