From c87efed6a474752af60858505ee39df9fcfd29d1 Mon Sep 17 00:00:00 2001 From: Abdullah Shahid Khan <69131903+Sh9hid@users.noreply.github.com> Date: Wed, 31 Aug 2022 20:48:25 +0530 Subject: [PATCH] api: fix typo on Push godoc (#9798) Signed-off-by: Abdullah Shahid Khan <69131903+Sh9hid@users.noreply.github.com> --- pkg/api/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/api/api.go b/pkg/api/api.go index 38af772ca..74c33dcee 100644 --- a/pkg/api/api.go +++ b/pkg/api/api.go @@ -29,7 +29,7 @@ import ( type Service interface { // Build executes the equivalent to a `compose build` Build(ctx context.Context, project *types.Project, options BuildOptions) error - // Push executes the equivalent ot a `compose push` + // Push executes the equivalent to a `compose push` Push(ctx context.Context, project *types.Project, options PushOptions) error // Pull executes the equivalent of a `compose pull` Pull(ctx context.Context, project *types.Project, options PullOptions) error