From 1b569f5231e4c9882eb43ac08218009877422afe Mon Sep 17 00:00:00 2001 From: Jorge Niedbalski Date: Mon, 26 Nov 2018 13:24:09 -0300 Subject: [PATCH] Update interface.go Fixed typo in Build function signature, replaced sevice/service Signed-off-by: Jorge Niedbalski --- project/interface.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/interface.go b/project/interface.go index 3356407c2..4cc47beac 100644 --- a/project/interface.go +++ b/project/interface.go @@ -13,7 +13,7 @@ type APIProject interface { events.Notifier events.Emitter - Build(ctx context.Context, options options.Build, sevice ...string) error + Build(ctx context.Context, options options.Build, service ...string) error Config() (string, error) Create(ctx context.Context, options options.Create, services ...string) error Delete(ctx context.Context, options options.Delete, services ...string) error