From d7d80ede8eb55b261336d08f7962aeef82d4a2c7 Mon Sep 17 00:00:00 2001 From: Nikita Volkov Date: Sun, 26 May 2019 18:00:26 +0300 Subject: [PATCH] Correct the docs --- library/Hasql/Private/Decoders.hs | 2 +- library/Hasql/Private/Encoders.hs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/library/Hasql/Private/Decoders.hs b/library/Hasql/Private/Decoders.hs index 12f05b5..9959d41 100644 --- a/library/Hasql/Private/Decoders.hs +++ b/library/Hasql/Private/Decoders.hs @@ -206,7 +206,7 @@ numeric = Value (Value.decoder (const A.numeric)) {-| Decoder of the @CHAR@ values. -Note that it supports UTF-8 values. +Note that it supports Unicode values. -} {-# INLINABLE char #-} char :: Value Char diff --git a/library/Hasql/Private/Encoders.hs b/library/Hasql/Private/Encoders.hs index a06917c..aa5e501 100644 --- a/library/Hasql/Private/Encoders.hs +++ b/library/Hasql/Private/Encoders.hs @@ -166,7 +166,7 @@ numeric = Value (Value.unsafePTIWithShow PTI.numeric (const A.numeric)) {-| Encoder of @CHAR@ values. -Note that it supports UTF-8 values and +Note that it supports Unicode values and identifies itself under the @TEXT@ OID because of that. -} {-# INLINABLE char #-}