From 0c16ce764998a5e6fbe4a86b549d3455f978702d Mon Sep 17 00:00:00 2001 From: Evgenii Date: Fri, 4 Feb 2022 01:14:34 -0600 Subject: [PATCH] fix: typo in a comment in a sqlx-postgres example (#744) --- examples/sqlx-postgres/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {