1
0
mirror of https://github.com/golang/go synced 2024-09-28 17:24:28 -06:00

database/sql: fix typo in comment

Change-Id: Ie8ac82b6a1685299a92ec59acbd80b6de38e377c
GitHub-Last-Rev: 325df8d148
GitHub-Pull-Request: golang/go#66457
Reviewed-on: https://go-review.googlesource.com/c/go/+/573615
Reviewed-by: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by: David Chase <drchase@google.com>
This commit is contained in:
guoguangwu 2024-03-22 01:26:02 +00:00 committed by Gopher Robot
parent a6ecdf29e3
commit b5e377cedc

View File

@ -37,7 +37,7 @@ Goals of the sql and sql/driver packages:
* Push complexity, where necessary, down into the sql+driver packages,
rather than exposing it to users. Said otherwise, the sql package
should expose an ideal database that's not finnicky about how it's
should expose an ideal database that's not finicky about how it's
accessed, even if that's not true.
* Provide optional interfaces in sql/driver for drivers to implement