Skip to content

Commit c865135

Browse files
committed
Error strings should not be capitalized
1 parent afc3f57 commit c865135

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/nginx.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1052,7 +1052,7 @@ func (client *NginxClient) GetStats() (*Stats, error) {
10521052

10531053
requests, err := client.GetHTTPRequests()
10541054
if err != nil {
1055-
return nil, fmt.Errorf("Failed to get stats: %w", err)
1055+
return nil, fmt.Errorf("failed to get stats: %w", err)
10561056
}
10571057

10581058
ssl, err := client.GetSSL()

0 commit comments

Comments
 (0)