From c06102fc4712ef8a73661de11fe6dd3ceafc4a19 Mon Sep 17 00:00:00 2001 From: Joscha Date: Sun, 4 Feb 2018 22:02:05 +0000 Subject: [PATCH] Beautify imports --- src/EuphApi/Types.hs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/EuphApi/Types.hs b/src/EuphApi/Types.hs index e690f2f..6cffb4d 100644 --- a/src/EuphApi/Types.hs +++ b/src/EuphApi/Types.hs @@ -14,8 +14,9 @@ module EuphApi.Types , SessionView(..) ) where -import Data.Aeson import Data.Function + +import Data.Aeson import qualified Data.Text as T import Data.Time import Data.Time.Clock.POSIX @@ -78,7 +79,7 @@ data Message = Message { msgID :: Snowflake -- ^ The id of the message (unique within a room) , msgParent :: Maybe Snowflake - -- ^ The id of the message's parent, or Nothing if top-level + -- ^ The id of the message's parent, or @Nothing@ if top-level , msgTime :: UTCTime -- ^ The unix timestamp of when the message was posted , msgSender :: SessionView