From 0897d69ddd41ff1e0c841693421f49e19fcaba44 Mon Sep 17 00:00:00 2001 From: Phil Jones Date: Mon, 30 Dec 2024 11:17:48 +0000 Subject: Fix comment typo. --- src/string_vec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/string_vec.c b/src/string_vec.c index 7a8493f..eb3e117 100644 --- a/src/string_vec.c +++ b/src/string_vec.c @@ -136,7 +136,7 @@ void string_ref_vec_history_sort(struct string_ref_vec *restrict vec, struct his /* * To find elements without assuming the vector is pre-sorted, we use a * hash table, which results in O(N+M) work (rather than O(N*M) for - * linear search. + * linear search). */ GHashTable *hash = g_hash_table_new(g_str_hash, g_str_equal); for (size_t i = 0; i < vec->count; i++) { -- cgit v1.2.3