From f14f93afa7e62bd92068e9d3f425f3b2fd75e43f Mon Sep 17 00:00:00 2001 From: Benjamin B <7598058+BBlackwo@users.noreply.github.com> Date: Thu, 2 Nov 2023 09:14:15 +1100 Subject: [PATCH] Fix typo in pastebin tutorial: 'route' -> 'wrote'. --- site/guide/10-pastebin-tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/guide/10-pastebin-tutorial.md b/site/guide/10-pastebin-tutorial.md index 875c72ae..6cdda784 100644 --- a/site/guide/10-pastebin-tutorial.md +++ b/site/guide/10-pastebin-tutorial.md @@ -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 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 -`retrieve` route we just route. +`retrieve` route we just wrote. ### Streaming Data