From ece1f81ae81319922d63031a53a558a9a887ef4e Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Tue, 7 Jun 2022 19:02:06 +0300 Subject: Fix typo in GC_malloc_explicitly_typed comment (a cherry-pick of commit 2e6178c68 from 'release-7_6') * typd_mlc.c (GC_malloc_explicitly_typed): Fix typo (remove duplicate "the") in comment. --- typd_mlc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typd_mlc.c b/typd_mlc.c index 0bb6e8a0..b3f5b604 100644 --- a/typd_mlc.c +++ b/typd_mlc.c @@ -625,7 +625,7 @@ GC_API void * GC_CALL GC_malloc_explicitly_typed(size_t lb, GC_descr d) op = (ptr_t)GENERAL_MALLOC((word)lb, GC_explicit_kind); if (0 == op) return 0; /* It is not safe to use GC_size_map[lb] to compute lg here */ - /* as the the former might be updated asynchronously. */ + /* as the former might be updated asynchronously. */ lg = BYTES_TO_GRANULES(GC_size(op)); } else { *opp = obj_link(op); -- cgit v1.2.1