Skip to content

Commit 2a7b531

Browse files
committed
cmd/feather: fix capitalised errors
1 parent c782262 commit 2a7b531

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/feather/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ Example:
4040

4141
r, err := feather.DownloadFile(c)
4242
if err != nil {
43-
return fmt.Errorf("Error starting file download: %w", err)
43+
return fmt.Errorf("error starting file download: %w", err)
4444
}
4545
defer r.Close()
4646

4747
_, err = io.Copy(os.Stdout, r)
4848
if err != nil {
49-
return fmt.Errorf("Error downloading file: %w", err)
49+
return fmt.Errorf("error downloading file: %w", err)
5050
}
5151
return nil
5252
}

0 commit comments

Comments
 (0)