From 7476442ed657d21b68b04e6ba2ae173f98265cf8 Mon Sep 17 00:00:00 2001 From: KiYugadgeter <7894040+KiYugadgeter@users.noreply.github.com> Date: Sun, 4 Sep 2022 17:28:49 +0900 Subject: こんにちわ is wrong Japanse. The correct word is こんにちは MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _example/limit/limit.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '_example/limit') diff --git a/_example/limit/limit.go b/_example/limit/limit.go index 1f33634..bcba819 100644 --- a/_example/limit/limit.go +++ b/_example/limit/limit.go @@ -17,7 +17,7 @@ func createBulkInsertQuery(n int, start int) (query string, args []interface{}) for i := 0; i < n; i++ { values[i] = "(?, ?)" args[pos] = start + i - args[pos+1] = fmt.Sprintf("こんにちわ世界%03d", i) + args[pos+1] = fmt.Sprintf("こんにちは世界%03d", i) pos += 2 } query = fmt.Sprintf( -- cgit v1.2.3