From 7430eae90e50e33c272da0514675a1ade8193cac Mon Sep 17 00:00:00 2001 From: Nikita Volkov Date: Mon, 30 May 2022 12:25:40 +0300 Subject: [PATCH] Fix docs --- library/Hasql/Private/Decoders.hs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/library/Hasql/Private/Decoders.hs b/library/Hasql/Private/Decoders.hs index 15b8954..e1e692d 100644 --- a/library/Hasql/Private/Decoders.hs +++ b/library/Hasql/Private/Decoders.hs @@ -14,6 +14,7 @@ import qualified Hasql.Private.Decoders.Row as Row import qualified Hasql.Private.Decoders.Value as Value import qualified Hasql.Private.Decoders.Array as Array import qualified Hasql.Private.Decoders.Composite as Composite +import qualified Hasql.Private.Errors as Errors import qualified Hasql.Private.Prelude as Prelude import qualified Data.Vector.Generic as GenericVector @@ -44,7 +45,7 @@ rowsAffected = Result (Results.single Result.rowsAffected) {-| Exactly one row. -Will raise the 'Hasql.Errors.UnexpectedAmountOfRows' error if it's any other. +Will raise the 'Errors.UnexpectedAmountOfRows' error if it's any other. -} {-# INLINABLE singleRow #-} singleRow :: Row a -> Result a