diff options
author | KiYugadgeter <7894040+KiYugadgeter@users.noreply.github.com> | 2022-09-04 17:28:49 +0900 |
---|---|---|
committer | mattn <mattn.jp@gmail.com> | 2022-09-04 18:00:08 +0900 |
commit | 7476442ed657d21b68b04e6ba2ae173f98265cf8 (patch) | |
tree | b5112fdfeeed62be36d04514e84e924f6caae6ba /_example/limit | |
parent | Fix "ennviroment" (#1077) (diff) | |
download | golite-7476442ed657d21b68b04e6ba2ae173f98265cf8.tar.gz golite-7476442ed657d21b68b04e6ba2ae173f98265cf8.tar.xz |
こんにちわ is wrong Japanse. The correct word is こんにちは
Diffstat (limited to '_example/limit')
-rw-r--r-- | _example/limit/limit.go | 2 |
1 files changed, 1 insertions, 1 deletions
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( |