From 6418be2c2a1cf018893c4e5bdf35f1bf0e66c139 Mon Sep 17 00:00:00 2001 From: Philipp Middendorf Date: Fri, 6 Sep 2024 09:55:31 +0200 Subject: [PATCH] Fix 404 link to GHC docs for the UNPACK pragma --- src/Data/Binary/Get.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Data/Binary/Get.hs b/src/Data/Binary/Get.hs index 00fc07b..121955f 100644 --- a/src/Data/Binary/Get.hs +++ b/src/Data/Binary/Get.hs @@ -41,7 +41,7 @@ -- The fields in @Trade@ are marked as strict (using @!@) since we don't need -- laziness here. In practise, you would probably consider using the UNPACK -- pragma as well. --- +-- -- -- Now, let's have a look at a decoder for this format. --