Skip to content

Commit 1e3a6d7

Browse files
committed
Modify text
1 parent 01aef3e commit 1e3a6d7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

kadai3-1/lfcd85/cmd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
const path = "./testdata/go_standard_library.txt"
1313

1414
func main() {
15-
timeLimit := flag.Int("t", 30, "Time limit of the game (secs)")
15+
timeLimit := flag.Int("t", 30, "Time limit of the game (sec)")
1616
flag.Parse()
1717

1818
words, err := words.Import(path)

kadai3-1/lfcd85/typinggame/typinggame.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ func (g *Game) run(ch <-chan string, w io.Writer) {
2727
ctx, cancel := context.WithTimeout(bc, g.TimeLimit)
2828
defer cancel()
2929

30-
fmt.Fprintln(w, "Let's type the standard package names! (Time limit:", g.TimeLimit, ")")
30+
fmt.Fprintln(w, "Let's type the standard package names! ( Time limit:", g.TimeLimit, ")")
3131

3232
var score int
3333
rand.Seed(time.Now().UnixNano())

0 commit comments

Comments
 (0)