From 6a21b8cc8b827f9f0f6d248a433bbce6bf6cd5d1 Mon Sep 17 00:00:00 2001 From: Quix <61027486+QuixoticValentine@users.noreply.github.com> Date: Mon, 15 Feb 2021 10:53:38 -0500 Subject: [PATCH] pg: fix typo (#8750) --- vlib/pg/pg.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/pg/pg.v b/vlib/pg/pg.v index 5f8708e4e2..296b868d49 100644 --- a/vlib/pg/pg.v +++ b/vlib/pg/pg.v @@ -92,7 +92,7 @@ fn res_to_rows(res voidptr) []Row { return rows } -// close frees the underlaying resource allocated by the database connection +// close frees the underlying resource allocated by the database connection pub fn (db DB) close() { C.PQfinish(db.conn) }