From 933834de53e165747fa6f5640f87e7754436e92a Mon Sep 17 00:00:00 2001 From: "Claire.Nicholas" Date: Wed, 23 Aug 2023 16:01:13 -0500 Subject: [PATCH] feat: build executable sdk implementation fix comment --- vela/build.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vela/build.go b/vela/build.go index 953dc0a..dfe31b4 100644 --- a/vela/build.go +++ b/vela/build.go @@ -40,7 +40,7 @@ func (svc *BuildService) Get(org, repo string, build int) (*library.Build, *Resp return v, resp, err } -// Get returns the provided build executable. +// GetBuildExecutable returns the executable for the provided build. func (svc *BuildService) GetBuildExecutable(org, repo string, build int) (*library.BuildExecutable, *Response, error) { // set the API endpoint path we send the request to u := fmt.Sprintf("/api/v1/repos/%s/%s/builds/%d/executable", org, repo, build)