From: guoguangwu Date: Fri, 22 Mar 2024 01:26:02 +0000 (+0000) Subject: database/sql: fix typo in comment X-Git-Tag: go1.23rc1~798 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b5e377cedcfd7eb629ee5718acabccad98281d51;p=gostls13.git 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 LUCI-TryBot-Result: Go LUCI Auto-Submit: Ian Lance Taylor Reviewed-by: David Chase --- 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