Skip to content

Commit

Permalink
Fix log messages and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
nkryuchkov committed Feb 11, 2020
1 parent 81917c3 commit 8cfc92a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/util/updater/updater.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ var (
ErrMalformedChecksumFile = errors.New("malformed checksum file")
)

// Updater checks if a new version of skywire-visor is available, downloads its binary file
// and runs it, substituting the current binary file.
// Updater checks if a new version of skywire is available, downloads its binary files
// and runs them, substituting the current binary files.
type Updater struct {
log *logging.Logger
restartCtx *restart.Context
Expand All @@ -64,7 +64,7 @@ func (u *Updater) Update() error {

lastVersion, err := lastVersion()
if err != nil {
return fmt.Errorf("failed to get last visor version: %w", err)
return fmt.Errorf("failed to get last Skywire version: %w", err)
}

u.log.Infof("Last Skywire version: %q", lastVersion.String())
Expand Down

0 comments on commit 8cfc92a

Please sign in to comment.