From 5bacd43d2c85371ea42d8fe7797995cbd271e28b Mon Sep 17 00:00:00 2001 From: Peter Kementzey <45865060+PeterKementzey@users.noreply.github.com> Date: Thu, 26 Feb 2026 15:13:31 +0100 Subject: [PATCH] docs: fix doc comment on UnexpectedArgumentCount --- src/pog.gleam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pog.gleam b/src/pog.gleam index 2cb6c61..7549db4 100644 --- a/src/pog.gleam +++ b/src/pog.gleam @@ -519,8 +519,8 @@ pub type QueryError { /// The query failed within the database. /// https://www.postgresql.org/docs/current/errcodes-appendix.html PostgresqlError(code: String, name: String, message: String) - // The number of arguments supplied did not match the number of parameters - // that the query has. + /// The number of arguments supplied did not match the number of parameters + /// that the query has. UnexpectedArgumentCount(expected: Int, got: Int) /// One of the arguments supplied was not of the type that the query required. UnexpectedArgumentType(expected: String, got: String)