Use "set up" rather than "setup" when used as a verb

This commit is contained in:
Olaf Alders
2023-09-16 22:24:00 +02:00
committed by David Pedersen
parent 133a4dc32e
commit d303074379
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ async fn main() {
let db_connection_str = std::env::var("DATABASE_URL")
.unwrap_or_else(|_| "postgres://postgres:password@localhost".to_string());
// setup connection pool
// set up connection pool
let pool = PgPoolOptions::new()
.max_connections(5)
.acquire_timeout(Duration::from_secs(3))