From b4bfc9f2495c69e515365f0ec4827a8efc9663bb Mon Sep 17 00:00:00 2001 From: Yohannes Kifle Date: Mon, 14 Jun 2021 18:21:01 +0000 Subject: [PATCH] Fix typo in requests guide: 'the' -> 'then'. --- site/guide/4-requests.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/guide/4-requests.md b/site/guide/4-requests.md index b4e5b993..31d32b4e 100644 --- a/site/guide/4-requests.md +++ b/site/guide/4-requests.md @@ -683,7 +683,7 @@ See the [JSON example](@example/serialization/src/json.rs) on GitHub for a compl ### Temporary Files The [`TempFile`] data guard streams data directly to a temporary file which can -the be persisted. It makes accepting file uploads trivial: +then be persisted. It makes accepting file uploads trivial: ```rust # #[macro_use] extern crate rocket;