Skip to content

Commit

Permalink
こんにちわ is wrong Japanse. The correct word is こんにちは
Browse files Browse the repository at this point in the history
  • Loading branch information
KiYugadgeter authored and mattn committed Sep 4, 2022
1 parent da62659 commit 7476442
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion _example/limit/limit.go
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion _example/simple/Dockerfile
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion _example/simple/simple.go
Expand Up @@ -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)
}
Expand Down

0 comments on commit 7476442

Please sign in to comment.