From 88ac6ff200bb6410851a71244a2118f83b7c8ed3 Mon Sep 17 00:00:00 2001 From: Manni Wood Date: Mon, 19 Sep 2016 20:43:03 -0400 Subject: [PATCH] Reformats "char" comment a bit --- values.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/values.go b/values.go index b7112b9b..859d79a1 100644 --- a/values.go +++ b/values.go @@ -261,9 +261,9 @@ func (n NullString) Encode(w *WriteBuf, oid Oid) error { // The pgx.Char type is for PostgreSQL's special 8-bit-only // "char" type more akin to the C language's char type, or Go's byte type. -// (Note that the name in PostgreSQL itself is "char" and not char.) -// It gets used a lot -// in PostgreSQL's system tables to hold a single ASCII character value. +// (Note that the name in PostgreSQL itself is "char", in double-quotes, +// and not char.) It gets used a lot in PostgreSQL's system tables to hold +// a single ASCII character value. type Char byte // NullChar represents a pgx.Char that may be null. NullChar implements the