From 9638976991909a7bb1695d0c89ef5842e30c040c Mon Sep 17 00:00:00 2001 From: Michael Lynch Date: Fri, 13 Sep 2024 19:34:58 -0400 Subject: [PATCH] Fix HardHeapLimit name in comment (#152) --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index c1154b2..8a84bc9 100644 --- a/config.go +++ b/config.go @@ -302,7 +302,7 @@ func (c *Conn) SoftHeapLimit(n int64) int64 { return int64(c.call("sqlite3_soft_heap_limit64", uint64(n))) } -// SoftHeapLimit imposes a hard limit on heap size. +// HardHeapLimit imposes a hard limit on heap size. // // https://sqlite.org/c3ref/hard_heap_limit64.html func (c *Conn) HardHeapLimit(n int64) int64 {