From 29942732c5eaaf470d6925ed8dea07f26984731f Mon Sep 17 00:00:00 2001 From: Steve Mao Date: Tue, 4 Jun 2024 23:25:36 +1000 Subject: [PATCH] fix typo (ByteString -> Text) --- src/Data/Aeson/Decoding.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Data/Aeson/Decoding.hs b/src/Data/Aeson/Decoding.hs index e9b11e25..6ded5723 100644 --- a/src/Data/Aeson/Decoding.hs +++ b/src/Data/Aeson/Decoding.hs @@ -96,7 +96,7 @@ throwDecode bs = unResult (toResultValue (lbsToTokens bs)) (throwM . AesonExcept -- Decoding: strict text ------------------------------------------------------------------------------- --- | Efficiently deserialize a JSON value from a strict 'B.ByteString'. +-- | Efficiently deserialize a JSON value from a strict 'T.Text'. -- If this fails due to incomplete or invalid input, 'Nothing' is -- returned. --