From 23a4edc0d73e95f775e46cb840260326b4a141e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Geisend=C3=B6rfer?= Date: Tue, 28 Apr 2020 11:33:33 +0200 Subject: [PATCH 1/2] Fix typo in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d96eaafd..f06af740 100644 --- a/README.md +++ b/README.md @@ -153,7 +153,7 @@ pgx follows semantic versioning for the documented public API on stable releases pgx is the head of a family of PostgreSQL libraries. Many of these can be used independently. Many can also be accessed from pgx for lower-level control. -### [github.com/jackc/pgconn)](https://github.com/jackc/pgconn) +### [github.com/jackc/pgconn](https://github.com/jackc/pgconn) `pgconn` is a lower-level PostgreSQL database driver that operates at nearly the same level as the C library `libpq`. From 830193dc3650860f779c7431aef827bcf07a180b Mon Sep 17 00:00:00 2001 From: Dmitriy Date: Wed, 29 Apr 2020 22:23:46 -0700 Subject: [PATCH 2/2] Small typo fixed --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f06af740..cd6f8c4f 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ The pgx interface is faster and exposes more features. The `database/sql` interface only allows the underlying driver to return or receive the following types: `int64`, `float64`, `bool`, `[]byte`, `string`, `time.Time`, or `nil`. Handling other types requires implementing the -`database/sql.Scanner` and the `database/sq/driver.Valuer` interfaces which require transmission of values in text format. The binary format can be substantially faster, which is what the pgx interface uses. +`database/sql.Scanner` and the `database/sql/driver/driver.Valuer` interfaces which require transmission of values in text format. The binary format can be substantially faster, which is what the pgx interface uses. ## Features