From f49b92d5a89033429c07a3fcfe74fd76426c2a13 Mon Sep 17 00:00:00 2001 From: Manni Wood Date: Sat, 10 Sep 2016 19:47:51 -0400 Subject: [PATCH] Fixes typo --- values.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/values.go b/values.go index de5bcfd5..1bf224d5 100644 --- a/values.go +++ b/values.go @@ -342,7 +342,7 @@ func (n NullInt32) Encode(w *WriteBuf, oid Oid) error { // // it is the data type of the xmin and xmax hidden system columns. // -// It is currently implemented as an unsigned for byte integer. +// It is currently implemented as an unsigned four byte integer. // Its definition can be found in src/include/postgres_ext.h as TransactionId // in the PostgreSQL sources. type Xid uint32 @@ -394,7 +394,7 @@ func (n NullXid) Encode(w *WriteBuf, oid Oid) error { // // it is the data type of the cmin and cmax hidden system columns. // -// It is currently implemented as an unsigned for byte integer. +// It is currently implemented as an unsigned four byte integer. // Its definition can be found in src/include/c.h as CommandId // in the PostgreSQL sources. type Cid uint32