Fix HardHeapLimit name in comment (#152)

This commit is contained in:
Michael Lynch
2024-09-13 19:34:58 -04:00
committed by GitHub
parent b631ff1add
commit 9638976991

View File

@@ -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 {