From e5f6bd49f39ba5af74cbdf03437b6f4aea51d79a Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Wed, 15 Jan 2020 03:44:57 -0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 87cff959..2042b777 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ It is a very good idea to always create a connection pool at the beginning of yo and then share that. ```rust -# Postgres +// Postgres let pool = sqlx::PgPool::new("postgres://localhost/database").await?; ```