[chore] minor fixes
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
mangoiv 2024-07-21 19:28:38 +02:00
parent 963f5c48ec
commit 30af8940ec
Signed by: mangoiv
SSH key fingerprint: SHA256:JlsRe4zkmS13EG6gMFNjv13Lw5rtoMPu3Lq69ZQTKF8
2 changed files with 3 additions and 2 deletions

View file

@ -24,6 +24,7 @@ module Network.HTTP.Barf
, q_ , q_
, h_ , h_
, j_ , j_
, v_
-- ** debugging helpers -- ** debugging helpers
, inspectRequest_ , inspectRequest_

View file

@ -76,7 +76,7 @@ instance IsList Req where
-- | creates a @GET@ request, use it like -- | creates a @GET@ request, use it like
-- --
-- @'get_' "http://localhost:8080"@ -- @'get_' "http://localhost:8080" []@
get_ get_
:: MonadIO m :: MonadIO m
=> String => String
@ -88,7 +88,7 @@ get_ = httpWithManager "GET"
-- | creates a @HEAD@ request, use it like -- | creates a @HEAD@ request, use it like
-- --
-- @'head_' "http://localhost:8080"@ -- @'head_' "http://localhost:8080" []@
head_ head_
:: MonadIO m :: MonadIO m
=> String => String