chore: fix misspelling

This commit is contained in:
Yordis Prieto Lazo
2022-12-18 22:58:07 -05:00
parent 2f959a773c
commit 0842910049
16 changed files with 31 additions and 30 deletions
+3 -3
View File
@@ -63,7 +63,7 @@ type Condition struct {
Transition time.Time `json:"transition"`
// Reason is a short reason of why node goes into this condition.
Reason string `json:"reason"`
// Message is a human readable message of why node goes into this condition.
// Message is a human-readable message of why node goes into this condition.
Message string `json:"message"`
}
@@ -75,7 +75,7 @@ type Event struct {
Timestamp time.Time `json:"timestamp"`
// Reason is a short reason of why the event is generated.
Reason string `json:"reason"`
// Message is a human readable message of why the event is generated.
// Message is a human-readable message of why the event is generated.
Message string `json:"message"`
}
@@ -113,7 +113,7 @@ type Monitor interface {
// Exporter exports machine health data to certain control plane.
type Exporter interface {
// Export problems to the control plane.
// ExportProblems Export problems to the control plane.
ExportProblems(*Status)
}