diff --git a/examples/sqlx-postgres/src/main.rs b/examples/sqlx-postgres/src/main.rs index 31c94f81..febd6632 100644 --- a/examples/sqlx-postgres/src/main.rs +++ b/examples/sqlx-postgres/src/main.rs @@ -60,7 +60,7 @@ async fn main() { .unwrap(); } -// we can exact the connection pool with `Extension` +// we can extract the connection pool with `Extension` async fn using_connection_pool_extractor( Extension(pool): Extension, ) -> Result {