From 63b5c4a688903066f06b0a0adecc94d56d6d0e8b Mon Sep 17 00:00:00 2001 From: Marco Zocca Date: Sat, 16 Dec 2023 16:09:09 +0100 Subject: [PATCH] haddock --- Web/Scotty.hs | 5 +++-- Web/Scotty/Trans.hs | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Web/Scotty.hs b/Web/Scotty.hs index a6c5bfd..deced82 100644 --- a/Web/Scotty.hs +++ b/Web/Scotty.hs @@ -8,12 +8,13 @@ -- -- Please refer to the @examples@ directory and the @spec@ test suite for concrete use cases, e.g. constructing responses, exception handling and useful implementation details. module Web.Scotty - ( -- * running 'scotty' servers + ( -- * Running 'scotty' servers scotty , scottyOpts + , scottySocket , Options(..), defaultOptions -- ** scotty-to-WAI - , scottyApp, scottySocket + , scottyApp -- * Defining Middleware and Routes -- -- | 'Middleware' and routes are run in the order in which they diff --git a/Web/Scotty/Trans.hs b/Web/Scotty/Trans.hs index ea501e3..d78eda3 100644 --- a/Web/Scotty/Trans.hs +++ b/Web/Scotty/Trans.hs @@ -13,12 +13,13 @@ -- -- Please refer to the @examples@ directory and the @spec@ test suite for concrete use cases, e.g. constructing responses, exception handling and useful implementation details. module Web.Scotty.Trans - ( -- * running 'scotty' servers + ( -- * Running 'scotty' servers scottyT , scottyOptsT + , scottySocketT , Options(..), defaultOptions -- ** scotty-to-WAI - , scottyAppT, scottySocketT + , scottyAppT -- * Defining Middleware and Routes -- -- | 'Middleware' and routes are run in the order in which they