From d76cea45b5bc2e7e922289a93fd62c345914d78f Mon Sep 17 00:00:00 2001 From: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> Date: Wed, 17 Nov 2021 15:19:45 +0100 Subject: [PATCH] Found typo while reading code comments (#41740) --- pkg/api/org.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/api/org.go b/pkg/api/org.go index 4bffc06c709..4f95bbd05ad 100644 --- a/pkg/api/org.go +++ b/pkg/api/org.go @@ -24,7 +24,7 @@ func GetOrgByID(c *models.ReqContext) response.Response { return getOrgHelper(c.Req.Context(), c.ParamsInt64(":orgId")) } -// Get /api/orgs/name/:name +// GET /api/orgs/name/:name func (hs *HTTPServer) GetOrgByName(c *models.ReqContext) response.Response { org, err := hs.SQLStore.GetOrgByName(web.Params(c.Req)[":name"]) if err != nil {