Skip to content

Commit

Permalink
Merge pull request #6 from Tinyblargon/fix-example
Browse files Browse the repository at this point in the history
docs: errors package should not be capitalized
  • Loading branch information
Tinyblargon authored Nov 28, 2023
2 parents 963bb8c + 36fdffd commit cdf4950
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/style-guide/sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ func Test_UserID_Validate(t *testing.T) {
},
{name: "Invalid ID",
input: UserID(0),
output: Errors.New(UserID_Error_Invalid),
output: errors.New(UserID_Error_Invalid),
},
}
for _, test := range tests {
Expand Down

0 comments on commit cdf4950

Please sign in to comment.