From d262501a44c048ed36a17bbf661ced3c5193f455 Mon Sep 17 00:00:00 2001 From: Ryuma Taguchi <83487941+ryuma017@users.noreply.github.com> Date: Tue, 16 Aug 2022 00:30:27 +0900 Subject: [PATCH] fix typo in `SqlxPostgresConnector::connect()` doc (#968) --- src/driver/sqlx_postgres.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/driver/sqlx_postgres.rs b/src/driver/sqlx_postgres.rs index 7a50a3d83..bd5611485 100644 --- a/src/driver/sqlx_postgres.rs +++ b/src/driver/sqlx_postgres.rs @@ -39,7 +39,7 @@ impl SqlxPostgresConnector { string.starts_with("postgres://") && string.parse::().is_ok() } - /// Add configuration options for the MySQL database + /// Add configuration options for the PostgreSQL database #[instrument(level = "trace")] pub async fn connect(options: ConnectOptions) -> Result { let mut opt = options