From 5ece2efd4c610fe2c0078f49695d91025ae758fa Mon Sep 17 00:00:00 2001 From: WGH Date: Mon, 28 Mar 2022 05:08:30 +0300 Subject: [PATCH] Fix typo in Record type documentation --- record.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/record.go b/record.go index 718c3570..5cf2c93a 100644 --- a/record.go +++ b/record.go @@ -6,7 +6,7 @@ import ( ) // Record is the generic PostgreSQL record type such as is created with the -// "row" function. Record only implements BinaryEncoder and Value. The text +// "row" function. Record only implements BinaryDecoder and Value. The text // format output format from PostgreSQL does not include type information and is // therefore impossible to decode. No encoders are implemented because // PostgreSQL does not support input of generic records.