Merge pull request #10149 from TColl/typo-fix

fix typo
This commit is contained in:
Laura Brehm 2023-01-12 10:56:28 +01:00 committed by GitHub
commit 2aa88b5c9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ func (s *composeService) waitDependencies(ctx context.Context, project *types.Pr
if exited {
w.Events(containerEvents(containers, progress.Exited))
if code != 0 {
return fmt.Errorf("service %q didn't completed successfully: exit %d", dep, code)
return fmt.Errorf("service %q didn't complete successfully: exit %d", dep, code)
}
return nil
}