diff --git a/src/Network/HTTP/Barf.hs b/src/Network/HTTP/Barf.hs index 1396fec..84163e7 100644 --- a/src/Network/HTTP/Barf.hs +++ b/src/Network/HTTP/Barf.hs @@ -24,6 +24,7 @@ module Network.HTTP.Barf , q_ , h_ , j_ + , v_ -- ** debugging helpers , inspectRequest_ diff --git a/src/Network/HTTP/Barf/Internal.hs b/src/Network/HTTP/Barf/Internal.hs index eec9c47..3ec1be7 100644 --- a/src/Network/HTTP/Barf/Internal.hs +++ b/src/Network/HTTP/Barf/Internal.hs @@ -76,7 +76,7 @@ instance IsList Req where -- | creates a @GET@ request, use it like -- --- @'get_' "http://localhost:8080"@ +-- @'get_' "http://localhost:8080" []@ get_ :: MonadIO m => String @@ -88,7 +88,7 @@ get_ = httpWithManager "GET" -- | creates a @HEAD@ request, use it like -- --- @'head_' "http://localhost:8080"@ +-- @'head_' "http://localhost:8080" []@ head_ :: MonadIO m => String