build: apply gofmt from go1.13 to change case of number literals

This commit is contained in:
Nick Craig-Wood 2019-09-05 13:59:06 +01:00
parent 7b0966880e
commit ffa1dac10b
16 changed files with 37 additions and 37 deletions

View file

@ -248,7 +248,7 @@ func (ts *TokenSource) timeToExpiry() time.Duration {
return 0
}
if t.Expiry.IsZero() {
return 3E9 * time.Second // ~95 years
return 3e9 * time.Second // ~95 years
}
return t.Expiry.Sub(time.Now())
}