From b5e377cedcfd7eb629ee5718acabccad98281d51 Mon Sep 17 00:00:00 2001 From: guoguangwu Date: Fri, 22 Mar 2024 01:26:02 +0000 Subject: [PATCH] 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 --- src/database/sql/doc.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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