From 685d67d19d2e94fc94ed7334e5e7ab19454426d7 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Mon, 28 Mar 2022 23:27:45 -0600 Subject: Fix things that Hlint is complaining about. --- src/Internal/Hash.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Internal/Hash.hs') diff --git a/src/Internal/Hash.hs b/src/Internal/Hash.hs index 63f6043..272808b 100644 --- a/src/Internal/Hash.hs +++ b/src/Internal/Hash.hs @@ -8,4 +8,4 @@ import qualified Crypto.Hash.SHA1 as SHA1 quickHash :: String -> String quickHash str = - concatMap (flip showHex "") $ BS.unpack (SHA1.hash $ BC.pack str) + concatMap (`showHex` "") $ BS.unpack (SHA1.hash $ BC.pack str) -- cgit