fix: typo in a comment in a sqlx-postgres example (#744)

This commit is contained in:
Evgenii
2022-02-04 08:14:34 +01:00
committed by GitHub
parent 4a6e164cf3
commit 0c16ce7649
+1 -1
View File
@@ -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<PgPool>,
) -> Result<String, (StatusCode, String)> {