From c530a3c490d8b1358cb6eb27b573f330276d6812 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Mon, 28 Oct 2024 00:56:10 -0700 Subject: [PATCH] Updated comment [skip ci] --- src/hnsw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hnsw.c b/src/hnsw.c index b4ad56f..5bfc619 100644 --- a/src/hnsw.c +++ b/src/hnsw.c @@ -83,7 +83,7 @@ HnswInit(void) NULL, &hnsw_iterative_scan, HNSW_ITERATIVE_SCAN_OFF, hnsw_iterative_scan_options, PGC_USERSET, 0, NULL, NULL, NULL); - /* This is approximate and does not apply to the initial scan */ + /* This is approximate and does not affect the initial scan */ DefineCustomIntVariable("hnsw.max_scan_tuples", "Sets the max number of tuples to visit for iterative scans", NULL, &hnsw_max_scan_tuples, 20000, 1, INT_MAX, PGC_USERSET, 0, NULL, NULL, NULL);