From c637fe09b45949420d0efe1db49fd0cece1146d0 Mon Sep 17 00:00:00 2001 From: Felix Paulusma Date: Sat, 9 Dec 2023 20:41:42 +0100 Subject: [PATCH] wai: forgot to change since declaration --- wai/Network/Wai/Internal.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wai/Network/Wai/Internal.hs b/wai/Network/Wai/Internal.hs index 52a53458f..954ccde77 100644 --- a/wai/Network/Wai/Internal.hs +++ b/wai/Network/Wai/Internal.hs @@ -103,7 +103,7 @@ getRequestBodyChunk = requestBody -- The supplied IO action should return the next chunk of the body each time it -- is called and 'B.empty' when it has been fully consumed. -- --- @since 3.2.5 +-- @since 3.2.4 setRequestBodyChunks :: IO B.ByteString -> Request -> Request setRequestBodyChunks requestBody r = r {requestBody = requestBody}