]> Cypherpunks repositories - gostls13.git/commitdiff
database/sql: fix typo in comment
authorguoguangwu <guoguangwug@gmail.com>
Fri, 22 Mar 2024 01:26:02 +0000 (01:26 +0000)
committerGopher Robot <gobot@golang.org>
Fri, 22 Mar 2024 06:48:08 +0000 (06:48 +0000)
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>
src/database/sql/doc.txt

index 1341b5768f43046dfc4c80a0904c08fd3727a8d3..9aa9b2bf4033952161f19a71e1174732ed28fd30 100644 (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