Update README.md

This commit is contained in:
Ryan Leckey 2020-01-15 03:44:57 -08:00 committed by GitHub
parent 62e1df5ad9
commit e5f6bd49f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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?;
```