Skip to content

Commit

Permalink
Fix grammatical error in error message
Browse files Browse the repository at this point in the history
Since 'either' is singular it should be 'is' instead of 'are'
  • Loading branch information
anjannath authored and praveenkumar committed Apr 19, 2021
1 parent 7ccabb0 commit 1893d6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/crc/cmd/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ func (s *startResult) prettyPrintTo(writer io.Writer) error {
return s.Error
}
if s.ClusterConfig == nil {
return errors.New("either Error or ClusterConfig are needed")
return errors.New("either Error or ClusterConfig is needed")
}

if err := writeTemplatedMessage(writer, s); err != nil {
Expand Down

0 comments on commit 1893d6a

Please sign in to comment.