Fix typo in docs

non-blocking
Jack Christensen 2020-01-24 14:58:59 -06:00
parent 0bbaad1348
commit b01b35f466
1 changed files with 1 additions and 1 deletions

View File

@ -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,