aboutsummaryrefslogtreecommitdiff
path: root/src/database
diff options
context:
space:
mode:
authorguoguangwu <guoguangwug@gmail.com>2024-03-22 01:26:02 +0000
committerGopher Robot <gobot@golang.org>2024-03-22 06:48:08 +0000
commitb5e377cedcfd7eb629ee5718acabccad98281d51 (patch)
treee50de0208f815ea2afa4386a6c6529c4bb23a1ba /src/database
parenta6ecdf29e34ddc82b6ed2315aaedf4c4d522b96c (diff)
downloadgo-b5e377cedcfd7eb629ee5718acabccad98281d51.tar.xz
database/sql: fix typo in comment
Change-Id: Ie8ac82b6a1685299a92ec59acbd80b6de38e377c GitHub-Last-Rev: 325df8d1488b02bfa239d66cdf870e3d37169d76 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>
Diffstat (limited to 'src/database')
-rw-r--r--src/database/sql/doc.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/sql/doc.txt b/src/database/sql/doc.txt
index 1341b5768f..9aa9b2bf40 100644
--- a/src/database/sql/doc.txt
+++ b/src/database/sql/doc.txt
@@ -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