diff --git a/src/blocking/mod.rs b/src/blocking/mod.rs index 7db601d02..487387545 100644 --- a/src/blocking/mod.rs +++ b/src/blocking/mod.rs @@ -98,11 +98,12 @@ pub use self::response::Response; /// /// This function fails if: /// -/// - native TLS backend cannot be initialized -/// - supplied `Url` cannot be parsed -/// - there was an error while sending request -/// - redirect loop was detected -/// - redirect limit was exhausted +/// - the native TLS backend cannot be initialized, +/// - the supplied `Url` cannot be parsed, +/// - there was an error while sending request, +/// - a redirect loop was detected, +/// - the redirect limit was exhausted, or +/// - the total download time exceeds 30 seconds. pub fn get(url: T) -> crate::Result { Client::builder().build()?.get(url).send() }