From 2b30696dc080b90c90360cbbd930b645906a70b4 Mon Sep 17 00:00:00 2001 From: Thoralf-M <46689931+Thoralf-M@users.noreply.github.com> Date: Thu, 25 Jun 2020 22:32:20 +0200 Subject: [PATCH] Remove repetition of words (#555) --- client/login.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/login.go b/client/login.go index 5183aa21..610abf77 100644 --- a/client/login.go +++ b/client/login.go @@ -11,7 +11,7 @@ const ( ) // Login authorizes this API instance against the web API. -// You must call this function before any before any other call, if the web-auth plugin is enabled. +// You must call this function before any other call, if the web-auth plugin is enabled. func (api *GoShimmerAPI) Login(username string, password string) error { res := &webapi_auth.Response{} if err := api.do(http.MethodPost, routeLogin, -- GitLab