From d9e1738d7d1a38d432320b5836f1d08ab6e0cd82 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: [PATCH] =?UTF-8?q?=E3=81=93=E3=82=93=E3=81=AB=E3=81=A1=E3=82=8F?= =?UTF-8?q?=20is=20wrong=20Japanse.=20The=20correct=20word=20is=20?= =?UTF-8?q?=E3=81=93=E3=82=93=E3=81=AB=E3=81=A1=E3=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _example/limit/limit.go | 2 +- _example/simple/Dockerfile | 2 +- _example/simple/simple.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_example/limit/limit.go b/_example/limit/limit.go index 1f336341..bcba8190 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( diff --git a/_example/simple/Dockerfile b/_example/simple/Dockerfile index 58f5ffd8..c19f6e62 100644 --- a/_example/simple/Dockerfile +++ b/_example/simple/Dockerfile @@ -33,7 +33,7 @@ RUN \ RUN \ # Smoke test set -o pipefail; \ - /go/bin/simple | grep 99\ こんにちわ世界099 + /go/bin/simple | grep 99\ こんにちは世界099 # ----------------------------------------------------------------------------- # Main Stage diff --git a/_example/simple/simple.go b/_example/simple/simple.go index 9d907737..0c347919 100644 --- a/_example/simple/simple.go +++ b/_example/simple/simple.go @@ -37,7 +37,7 @@ func main() { } defer stmt.Close() for i := 0; i < 100; i++ { - _, err = stmt.Exec(i, fmt.Sprintf("こんにちわ世界%03d", i)) + _, err = stmt.Exec(i, fmt.Sprintf("こんにちは世界%03d", i)) if err != nil { log.Fatal(err) }