diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-05-24 22:14:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-24 22:14:21 +0800 |
commit | 344f25fb3ec26818c673a5b68b21b527759d7499 (patch) | |
tree | 0b5ffbe5ebceacc340ccf763edd7c41d33e7af76 | |
parent | 3b8915e387fd22a7cb8fde0da010d8f7bbf03bf1 (diff) | |
parent | 1afaea4bfede9e42496bdf5346b95045f779a4d4 (diff) | |
download | go-tangerine-344f25fb3ec26818c673a5b68b21b527759d7499.tar go-tangerine-344f25fb3ec26818c673a5b68b21b527759d7499.tar.gz go-tangerine-344f25fb3ec26818c673a5b68b21b527759d7499.tar.bz2 go-tangerine-344f25fb3ec26818c673a5b68b21b527759d7499.tar.lz go-tangerine-344f25fb3ec26818c673a5b68b21b527759d7499.tar.xz go-tangerine-344f25fb3ec26818c673a5b68b21b527759d7499.tar.zst go-tangerine-344f25fb3ec26818c673a5b68b21b527759d7499.zip |
Merge pull request #14507 from karalabe/faucet-misspell
cmd/faucet: fix a few typos
-rw-r--r-- | cmd/faucet/faucet.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/faucet/faucet.go b/cmd/faucet/faucet.go index f672433ee..c06c4365b 100644 --- a/cmd/faucet/faucet.go +++ b/cmd/faucet/faucet.go @@ -102,7 +102,7 @@ func main() { if amount == 1 { amounts[i] = strings.TrimSuffix(amounts[i], "s") } - // Calcualte the period for th enext tier and format it + // Calculate the period for the next tier and format it period := *minutesFlag * int(math.Pow(3, float64(i))) periods[i] = fmt.Sprintf("%d mins", period) if period%60 == 0 { |