Skip to content

Commit 7476442

Browse files
KiYugadgetermattn
authored andcommitted
こんにちわ is wrong Japanse. The correct word is こんにちは
1 parent da62659 commit 7476442

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

_example/limit/limit.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ func createBulkInsertQuery(n int, start int) (query string, args []interface{})
1717
for i := 0; i < n; i++ {
1818
values[i] = "(?, ?)"
1919
args[pos] = start + i
20-
args[pos+1] = fmt.Sprintf("こんにちわ世界%03d", i)
20+
args[pos+1] = fmt.Sprintf("こんにちは世界%03d", i)
2121
pos += 2
2222
}
2323
query = fmt.Sprintf(

_example/simple/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ RUN \
3333
RUN \
3434
# Smoke test
3535
set -o pipefail; \
36-
/go/bin/simple | grep 99\ こんにちわ世界099
36+
/go/bin/simple | grep 99\ こんにちは世界099
3737

3838
# -----------------------------------------------------------------------------
3939
# Main Stage

_example/simple/simple.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func main() {
3737
}
3838
defer stmt.Close()
3939
for i := 0; i < 100; i++ {
40-
_, err = stmt.Exec(i, fmt.Sprintf("こんにちわ世界%03d", i))
40+
_, err = stmt.Exec(i, fmt.Sprintf("こんにちは世界%03d", i))
4141
if err != nil {
4242
log.Fatal(err)
4343
}

0 commit comments

Comments
 (0)