From c786cd21ca7cde0c4c8cafc43ecfe884aacbeda6 Mon Sep 17 00:00:00 2001 From: Mohammad Asif Siddiqui Date: Mon, 14 Aug 2017 21:13:45 +0800 Subject: [PATCH] Fix Typo to improve GoReportCard --- main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.go b/main.go index 29cfcc433..da1294677 100644 --- a/main.go +++ b/main.go @@ -76,7 +76,7 @@ func main() { // Configure the parameters for feature discovery. sources, labelWhiteList, err := configureParameters(sourcesArg, whiteListArg) if err != nil { - stderrLogger.Fatalf("error occured while configuring parameters: %s", err.Error()) + stderrLogger.Fatalf("error occurred while configuring parameters: %s", err.Error()) } // Get the set of feature labels. @@ -86,7 +86,7 @@ func main() { // Update the node with the feature labels. err = updateNodeWithFeatureLabels(helper, noPublish, labels) if err != nil { - stderrLogger.Fatalf("error occured while updating node with feature labels: %s", err.Error()) + stderrLogger.Fatalf("error occurred while updating node with feature labels: %s", err.Error()) } } @@ -211,7 +211,7 @@ func updateNodeWithFeatureLabels(helper APIHelpers, noPublish bool, labels Label func getFeatureLabels(source FeatureSource) (labels Labels, err error) { defer func() { if r := recover(); r != nil { - stderrLogger.Printf("panic occured during discovery of source [%s]: %v", source.Name(), r) + stderrLogger.Printf("panic occurred during discovery of source [%s]: %v", source.Name(), r) err = fmt.Errorf("%v", r) } }()