Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
fix: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
myishay committed Apr 21, 2021
1 parent 342e606 commit 10a93b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bl/evaluator.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func CreateNewEvaluator(pe PropertiesExtractor, c CLIClient, p Printer) *Evaluat
propertiesExtractor: pe,
cliClient: c,
printer: p,
osInfo: NewOsOInfo(),
osInfo: NewOsInfo(),
}
}

Expand Down
2 changes: 1 addition & 1 deletion bl/osInfo.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type OSInfo struct {
KernelVersion string
}

func NewOsOInfo() *OSInfo {
func NewOsInfo() *OSInfo {
infoStat, _ := host.Info()
return &OSInfo{
OS: infoStat.OS,
Expand Down

0 comments on commit 10a93b5

Please sign in to comment.