mirror of
https://github.com/tokio-rs/axum.git
synced 2026-08-15 00:00:20 +02:00
fix: typo in a comment in a sqlx-postgres example (#744)
This commit is contained in:
@@ -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)> {
|
||||
|
||||
Reference in New Issue
Block a user