Skip to content

Commit

Permalink
Merge pull request #1624 from camcui/master
Browse files Browse the repository at this point in the history
chore: fix some typos in comments
  • Loading branch information
shirou committed Apr 13, 2024
2 parents 80895ea + 3ec3f55 commit df3a945
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/common/sleep.go
Expand Up @@ -6,7 +6,7 @@ import (
)

// Sleep awaits for provided interval.
// Can be interrupted by context cancelation.
// Can be interrupted by context cancellation.
func Sleep(ctx context.Context, interval time.Duration) error {
timer := time.NewTimer(interval)
select {
Expand Down
2 changes: 1 addition & 1 deletion net/net_linux.go
Expand Up @@ -471,7 +471,7 @@ func connectionsPidMaxWithoutUidsWithContext(ctx context.Context, kind string, p
}
}
if err != nil {
return nil, fmt.Errorf("cound not get pid(s), %d: %w", pid, err)
return nil, fmt.Errorf("could not get pid(s), %d: %w", pid, err)
}
return statsFromInodesWithContext(ctx, root, pid, tmap, inodes, skipUids)
}
Expand Down

0 comments on commit df3a945

Please sign in to comment.