浏览代码

Merge pull request #10962 from agyorev/dashboard-missing-input-error-typo

Correct typo in DashboardInputMissingError
Carl Bergquist 7 年之前
父节点
当前提交
0b8c3ab56f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      pkg/plugins/dashboard_importer.go

+ 1 - 1
pkg/plugins/dashboard_importer.go

@@ -35,7 +35,7 @@ type DashboardInputMissingError struct {
 }
 
 func (e DashboardInputMissingError) Error() string {
-	return fmt.Sprintf("Dashbord input variable: %v missing from import command", e.VariableName)
+	return fmt.Sprintf("Dashboard input variable: %v missing from import command", e.VariableName)
 }
 
 func init() {