diff --git a/examples/postgres/pooled-with-rustls/src/main.rs b/examples/postgres/pooled-with-rustls/src/main.rs index d13f13c..e206442 100644 --- a/examples/postgres/pooled-with-rustls/src/main.rs +++ b/examples/postgres/pooled-with-rustls/src/main.rs @@ -25,7 +25,7 @@ async fn main() -> Result<(), Box> { // means this will check whether the provided certificate is valid for the given database host. // // `libpq` does not perform these checks by default (https://www.postgresql.org/docs/current/libpq-connect.html) - // If you hit a TLS error while conneting to the database double check your certificates + // If you hit a TLS error while connecting to the database double check your certificates let pool = Pool::builder() .max_size(10) .min_idle(Some(5))