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

This commit is contained in:
Evgenii 2022-02-04 01:14:34 -06:00 committed by GitHub
parent 4a6e164cf3
commit 0c16ce7649
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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)> {