Skip to content

Commit

Permalink
fix small typo (#78)
Browse files Browse the repository at this point in the history
Signed-off-by: dahuang <[email protected]>
  • Loading branch information
dahuang-purestorage authored Sep 12, 2023
1 parent a05629e commit efe55db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/credentials/credentials.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func NewAWSCredentials(id, secret, token string, runningOnEc2 bool) (AWSCredenti
var creds *credentials.Credentials
sess, err := session.NewSession()
if err != nil {
return nil, fmt.Errorf("error crewating new aws credentials: %w", err)
return nil, fmt.Errorf("error creating new aws credentials: %w", err)
}
if id != "" && secret != "" {
creds = credentials.NewStaticCredentials(id, secret, token)
Expand Down

0 comments on commit efe55db

Please sign in to comment.