Skip to content

Commit

Permalink
fix GoDoc Comments
Browse files Browse the repository at this point in the history
  • Loading branch information
gamoutatsumi committed Sep 9, 2024
1 parent 75e3808 commit fd28a92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/util/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"golang.org/x/exp/rand"
)

// calcRetryTime is caliculate retry time by exponential backoff and jitter
// CalcRetryTime is caliculate retry time by exponential backoff and jitter
func CalcRetryTime(count int) time.Duration {
if count == 0 {
return 0
Expand Down
2 changes: 1 addition & 1 deletion pkg/runner/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var (
TargetTokenInterval = 5 * time.Minute
//NeedRefreshToken is time of token expired
NeedRefreshToken = 10 * time.Minute
// CountCreatedRunners is count of created runners
// CreatedRunners is count of created runners
CreatedRunners atomic.Int64
)

Expand Down

0 comments on commit fd28a92

Please sign in to comment.