From 61738846aff9d921eec1ea732d8380f3e6cdd87e Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Fri, 22 Dec 2023 14:03:33 -0500 Subject: [PATCH] Updated comment [skip ci] --- src/hnswbuild.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hnswbuild.c b/src/hnswbuild.c index 5bc7c7e..426364a 100644 --- a/src/hnswbuild.c +++ b/src/hnswbuild.c @@ -367,7 +367,7 @@ HnswElementMemory(HnswElement e, int m) elementSize += sizeof(List); elementSize += sizeof(ItemPointerData) + SIZEOF_VOID_P; elementSize += VARSIZE_ANY(DatumGetPointer(e->value)); - /* Each allocation has chunk header */ + /* Each allocation has a chunk header */ elementSize += (e->level + 7) * GENERATIONCHUNK_RAWSIZE; return elementSize; }