From 7c2b034fef2be1297e7e89f8ed2a41382ab19f00 Mon Sep 17 00:00:00 2001 From: Pi Delport Date: Tue, 30 Jul 2024 22:21:09 +0200 Subject: [PATCH] Trivial typo: Fix Haddock link to 'eitherDecodeFileStrict' --- src/Data/Aeson.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Data/Aeson.hs b/src/Data/Aeson.hs index bd1687be..be321930 100644 --- a/src/Data/Aeson.hs +++ b/src/Data/Aeson.hs @@ -253,7 +253,7 @@ eitherDecodeStrict' = eitherDecodeStrict -- | Like 'decodeFileStrict'' but returns an error message when decoding fails. -- --- Since @2.2.0.0@ an alias for 'eitherDecodeFileStrict''. +-- Since @2.2.0.0@ an alias for 'eitherDecodeFileStrict'. eitherDecodeFileStrict' :: (FromJSON a) => FilePath -> IO (Either String a) eitherDecodeFileStrict' = eitherDecodeFileStrict {-# INLINE eitherDecodeFileStrict' #-}