Skip to content

Commit

Permalink
typo in connect.go error message (#2997)
Browse files Browse the repository at this point in the history
  • Loading branch information
stensonb authored Feb 7, 2025
1 parent 061fd1b commit a004ddd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .changelog/3BE795A2-340F-4D5A-B237-8CE604BCB8E9.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"id": "3BE795A2-340F-4D5A-B237-8CE604BCB8E9",
"type": "bugfix",
"description": "typo in connect.go error message",
"collapse": false,
"modules": [
"feature/rds/auth"
]
}
2 changes: 1 addition & 1 deletion feature/rds/auth/connect.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func BuildAuthToken(ctx context.Context, endpoint, region, dbUser string, creds
}

if creds == nil {
return "", fmt.Errorf("credetials provider must not ne nil")
return "", fmt.Errorf("credentials provider must not be nil")
}

// the scheme is arbitrary and is only needed because validation of the URL requires one.
Expand Down

0 comments on commit a004ddd

Please sign in to comment.