From 6ece9a791f1dbe721392500925cfffc44123e485 Mon Sep 17 00:00:00 2001 From: Giorgio Marinelli Date: Thu, 12 Dec 2024 19:23:27 +0100 Subject: [PATCH] Fix comments --- http-client/Network/HTTP/Client/Types.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http-client/Network/HTTP/Client/Types.hs b/http-client/Network/HTTP/Client/Types.hs index 7967a0aa..c148b7d1 100644 --- a/http-client/Network/HTTP/Client/Types.hs +++ b/http-client/Network/HTTP/Client/Types.hs @@ -823,14 +823,14 @@ data ManagerSettings = ManagerSettings -- Since 0.4.7 , managerMaxHeaderLength :: Maybe MaxHeaderLength -- ^ Configure the maximum size, in bytes, of an HTTP header field. - -- Set it to `Nothing` to remove this limit (eg: for debugging purposes). + -- Set it to 'Nothing' to remove this limit (eg: for debugging purposes). -- -- Default: 4096 -- -- @since 0.7.17 , managerMaxNumberHeaders :: Maybe MaxNumberHeaders -- ^ Configure the maximum number of HTTP header fields. - -- Set it to `Nothing` to remove this limit (eg: for debugging purposes). + -- Set it to 'Nothing' to remove this limit (eg: for debugging purposes). -- -- Default: 100 --