From 05ab8aea2c52fcd94c7c6a363f0c6f4bd492a91f Mon Sep 17 00:00:00 2001 From: kevaundray Date: Tue, 16 Feb 2021 17:57:12 +0000 Subject: [PATCH] typo exmple -> example --- src/web/clients/download/partial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/clients/download/partial.md b/src/web/clients/download/partial.md index d288573..9b00bc0 100644 --- a/src/web/clients/download/partial.md +++ b/src/web/clients/download/partial.md @@ -5,7 +5,7 @@ Uses [`reqwest::blocking::Client::head`] to get the [Content-Length] of the response. The code then uses [`reqwest::blocking::Client::get`] to download the content in -chunks of 10240 bytes, while printing progress messages. This exmple uses the synchronous +chunks of 10240 bytes, while printing progress messages. This example uses the synchronous reqwest module. The [Range] header specifies the chunk size and position. The Range header is defined in [RFC7233][HTTP Range RFC7233].