Skip to content

Commit 8b42e59

Browse files
authored
Fix typo (#1922)
1 parent f76eb13 commit 8b42e59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/lib/gcp/errors.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,6 @@ func ErrorCredentialsFileEnvVarNotSet() error {
8181
func ErrorProjectIDMismatch(credsFileProject string, providedProject string, credsFilePath string) error {
8282
return errors.WithStack(&errors.Error{
8383
Kind: ErrProjectIDMismatch,
84-
Message: fmt.Sprintf("the \"%s\" project was specified in your configuration, but the credentials file at %s (specified via $GOOGLE_APPLICATION_CREDENTIALS) is connected the the project named \"%s\"", providedProject, credsFilePath, credsFileProject),
84+
Message: fmt.Sprintf("the \"%s\" project was specified in your configuration, but the credentials file at %s (specified via $GOOGLE_APPLICATION_CREDENTIALS) is connected to the project named \"%s\"", providedProject, credsFilePath, credsFileProject),
8585
})
8686
}

0 commit comments

Comments
 (0)