Fix typo in requests guide: 'the' -> 'then'.

This commit is contained in:
Yohannes Kifle 2021-06-14 18:21:01 +00:00 committed by Jeb Rosen
parent 7cced84c3f
commit b4bfc9f249
1 changed files with 1 additions and 1 deletions

View File

@ -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;