From acb424d5a464b161ccbbd1fb61faa4c7dd69941d Mon Sep 17 00:00:00 2001 From: Linas Vepstas Date: Thu, 23 Feb 2023 20:03:12 -0600 Subject: [PATCH] Fix typo in comments --- link-grammar/parse/parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/link-grammar/parse/parse.c b/link-grammar/parse/parse.c index 66f530ae8..df0c0250a 100644 --- a/link-grammar/parse/parse.c +++ b/link-grammar/parse/parse.c @@ -519,7 +519,7 @@ static void sort_linkages(Sentence sent, Parse_Options opts) for (uint32_t i=0; inum_linkages_alloced; i++) sent->lnkages[i].dupe = false; - /* Sorting will also mark some of hem as being duplicates */ + /* Sorting will also mark some of them as being duplicates */ qsort((void *)sent->lnkages, sent->num_linkages_alloced, sizeof(struct Linkage_s), (int (*)(const void *, const void *))opts->cost_model.compare_fn);