Skip to content

Commit

Permalink
preflight: Fix typo in error message
Browse files Browse the repository at this point in the history
"for you CPU" -> "for your CPU"
  • Loading branch information
cfergeau authored and praveenkumar committed Feb 14, 2020
1 parent c2102d5 commit bfbac99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/crc/preflight/preflight_checks_linux.go
Expand Up @@ -61,7 +61,7 @@ func checkVirtualizationEnabled() error {

cputype := re.FindString(flags)
if cputype == "" {
return fmt.Errorf("Virtualization is not available for you CPU")
return fmt.Errorf("Virtualization is not available for your CPU")
}
logging.Debug("CPU virtualization flags are good")
return nil
Expand Down

0 comments on commit bfbac99

Please sign in to comment.