Fix typo in pastebin tutorial: 'route' -> 'wrote'.

This commit is contained in:
Benjamin B 2023-11-02 09:14:15 +11:00 committed by Sergio Benitez
parent 1df854e13a
commit f14f93afa7
1 changed files with 1 additions and 1 deletions

View File

@ -384,7 +384,7 @@ Now that we can retrieve pastes safely, it's time to actually store them. We'll
write an `upload` route that, according to our design, takes a paste's contents write an `upload` route that, according to our design, takes a paste's contents
and writes them to a file with a randomly generated ID inside of the `upload/` and writes them to a file with a randomly generated ID inside of the `upload/`
directory. It'll return a URL to the client for the paste corresponding to the directory. It'll return a URL to the client for the paste corresponding to the
`retrieve` route we just route. `retrieve` route we just wrote.
### Streaming Data ### Streaming Data