From 1bf6ca2c4d41e0f2b074cd0235dcc181b45ca200 Mon Sep 17 00:00:00 2001 From: Connor Prussin Date: Thu, 25 May 2017 12:19:56 -0700 Subject: [PATCH] Ensure module-loading format follows purescript convention (#11) --- lib/HTTPure.purs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/HTTPure.purs b/lib/HTTPure.purs index b4e5020..0f2974f 100644 --- a/lib/HTTPure.purs +++ b/lib/HTTPure.purs @@ -1,10 +1,10 @@ -module HTTPure ( - module HTTPure.HTTPureM, - module HTTPure.Server, - module HTTPure.Request, - module HTTPure.Response, - module HTTPure.Route -) where +module HTTPure + ( module HTTPure.HTTPureM + , module HTTPure.Server + , module HTTPure.Request + , module HTTPure.Response + , module HTTPure.Route + ) where import HTTPure.HTTPureM (HTTPureM) import HTTPure.Server (serve)