From b01b35f466d926e7b372659a2a5291f722c59168 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Fri, 24 Jan 2020 14:58:59 -0600 Subject: [PATCH] Fix typo in docs --- zeronull/doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zeronull/doc.go b/zeronull/doc.go index 8db3507c..78a52307 100644 --- a/zeronull/doc.go +++ b/zeronull/doc.go @@ -2,7 +2,7 @@ /* Sometimes the distinction between a zero value and a NULL value is not useful at the application level. For example, in PostgreSQL an empty string may be stored as NULL. There is usually no application level distinction between an -empty string and a NULL string. Package zeronull implements types that seemlessly convert between PostgreSQL NULL and +empty string and a NULL string. Package zeronull implements types that seamlessly convert between PostgreSQL NULL and the zero value. It is recommended to convert types at usage time rather than instantiate these types directly. In the example below,