From: Michael Orlitzky Date: Sat, 2 Mar 2019 01:34:10 +0000 (-0500) Subject: src/Timeout.hs: add export list to silence a GHC warning. X-Git-Tag: 0.5.1~14 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=haeredes.git;a=commitdiff_plain;h=6fe16dcca81b5980ccd37e7961f438dd6c4844ed;ds=sidebyside src/Timeout.hs: add export list to silence a GHC warning. --- diff --git a/src/Timeout.hs b/src/Timeout.hs index 70cadf9..8184b3e 100644 --- a/src/Timeout.hs +++ b/src/Timeout.hs @@ -3,7 +3,7 @@ -- | A newtype around the DNS query timeout, in seconds. Needed for -- the 'Default' instance. -- -module Timeout +module Timeout (Timeout(..)) where import Data.Data (Data)