From a8c90e2365d056725e7d1c93162f6bf282779ec3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Mon, 23 Feb 2015 14:20:24 +0100 Subject: [PATCH] Small update to commands --- pkg/cmd/datasource.go | 4 ++-- pkg/cmd/web.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/cmd/datasource.go b/pkg/cmd/datasource.go index 660e59a9702..ea59a0599ea 100644 --- a/pkg/cmd/datasource.go +++ b/pkg/cmd/datasource.go @@ -54,13 +54,13 @@ var ( }, } DescribeDataSource = cli.Command{ - Name: "datasource:info", + Name: "datasources:info", Usage: "describe the details of a datasource", Description: "Describes the details of a datasource", Action: describeDataSource, } DeleteDataSource = cli.Command{ - Name: "datasource:delete", + Name: "datasources:delete", Usage: "Deletes a datasource", Description: "Deletes a datasource", Action: deleteDataSource, diff --git a/pkg/cmd/web.go b/pkg/cmd/web.go index b858072398c..ad3cd28f1af 100644 --- a/pkg/cmd/web.go +++ b/pkg/cmd/web.go @@ -23,7 +23,7 @@ import ( var Web = cli.Command{ Name: "web", - Usage: "grafana web", + Usage: "Starts Grafana backend & web server", Description: "Starts Grafana backend & web server", Action: runWeb, }