Skip to content

Commit 1260e90

Browse files
PeterKementzeylpil
authored andcommitted
docs: fix doc comment on UnexpectedArgumentCount
1 parent 832ec1a commit 1260e90

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/pog.gleam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -519,8 +519,8 @@ pub type QueryError {
519519
/// The query failed within the database.
520520
/// https://www.postgresql.org/docs/current/errcodes-appendix.html
521521
PostgresqlError(code: String, name: String, message: String)
522-
// The number of arguments supplied did not match the number of parameters
523-
// that the query has.
522+
/// The number of arguments supplied did not match the number of parameters
523+
/// that the query has.
524524
UnexpectedArgumentCount(expected: Int, got: Int)
525525
/// One of the arguments supplied was not of the type that the query required.
526526
UnexpectedArgumentType(expected: String, got: String)

0 commit comments

Comments
 (0)