From 8ca5538405c9dd81a3fb6580a666de761914d62e Mon Sep 17 00:00:00 2001 From: silvioprog Date: Tue, 12 Oct 2021 15:20:27 -0300 Subject: [PATCH] Fix typo in main.rs (#381) --- examples/customize-extractor-error/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/customize-extractor-error/src/main.rs b/examples/customize-extractor-error/src/main.rs index 87876f59..d7222e00 100644 --- a/examples/customize-extractor-error/src/main.rs +++ b/examples/customize-extractor-error/src/main.rs @@ -47,7 +47,7 @@ struct User { username: String, } -// We define our own `Json` extactor that customizes the error from `axum::Json` +// We define our own `Json` extractor that customizes the error from `axum::Json` struct Json(T); #[async_trait]