From 5b0eff9dae47e2381c370789f379b554a151b321 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Mon, 15 Apr 2024 15:53:07 -0700 Subject: [PATCH] Updated comment [skip ci] --- src/sparsevec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sparsevec.c b/src/sparsevec.c index f8444a0..270b049 100644 --- a/src/sparsevec.c +++ b/src/sparsevec.c @@ -887,7 +887,7 @@ sparsevec_l2_normalize(PG_FUNCTION_ARGS) zeros++; } - /* In the unlikely event there are zeros */ + /* Allocate a new vector in the unlikely event there are zeros */ if (zeros > 0) { SparseVector *newResult = InitSparseVector(result->dim, result->nnz - zeros);