@@ -307,7 +307,7 @@ getAllowBasicAuth :: BrowserAction t Bool
307307getAllowBasicAuth = gets bsAllowBasicAuth
308308
309309-- | @setMaxAuthAttempts mbMax@ sets the maximum number of authentication attempts
310- -- to do. If @Nothing@, rever to default max.
310+ -- to do. If @Nothing@, revert to default max.
311311setMaxAuthAttempts :: Maybe Int -> BrowserAction t ()
312312setMaxAuthAttempts mb
313313 | fromMaybe 0 mb < 0 = return ()
@@ -515,7 +515,7 @@ setAllowRedirects bl = modify (\b -> b {bsAllowRedirects=bl})
515515getAllowRedirects :: BrowserAction t Bool
516516getAllowRedirects = gets bsAllowRedirects
517517
518- -- | @setMaxRedirects maxCount@ sets the maxiumum number of forwarding hops
518+ -- | @setMaxRedirects maxCount@ sets the maximum number of forwarding hops
519519-- we are willing to jump through. A no-op if the count is negative; if zero,
520520-- the max is set to whatever default applies. Notice that setting the max
521521-- redirects count does /not/ enable following of redirects itself; use
@@ -600,7 +600,7 @@ setDebugLog v = modify (\b -> b {bsDebug=v})
600600-- A common form of user agent string is @\"name\/version (details)\"@. For
601601-- example @\"cabal-install/0.10.2 (HTTP 4000.1.2)\"@. Including the version
602602-- of this HTTP package can be helpful if you ever need to track down HTTP
603- -- compatability quirks. This version is available via 'httpPackageVersion'.
603+ -- compatibility quirks. This version is available via 'httpPackageVersion'.
604604-- For more info see <http://en.wikipedia.org/wiki/User_agent>.
605605--
606606setUserAgent :: String -> BrowserAction t ()
0 commit comments