Skip to content

Commit 76366fc

Browse files
committed
Travis CI config updated and typo fixed.
1 parent 07a4140 commit 76366fc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ go:
99

1010
script:
1111
- go vet ./...
12-
- go test -v -coverprofile=coverage.txt -covermode=atomic
12+
- go test ./... -v -coverprofile=coverage.txt -covermode=atomic
1313

1414
after_success:
1515
- bash <(curl -s https://codecov.io/bash)

styles.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -952,8 +952,8 @@ func parseTime(i int, v string) string {
952952
{"%%%%", "January"},
953953
{"&&&&", "Monday"},
954954
}
955-
// It is the presence of the "am/pm" indicator that determins if this is a
956-
// 12 hour or 24 hours time format, not the number of 'h' characters.
955+
// It is the presence of the "am/pm" indicator that determines if this is
956+
// a 12 hour or 24 hours time format, not the number of 'h' characters.
957957
if is12HourTime(format) {
958958
format = strings.Replace(format, "hh", "03", 1)
959959
format = strings.Replace(format, "h", "3", 1)

0 commit comments

Comments
 (0)