Skip to content

Commit

Permalink
Fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
haccht committed Nov 4, 2023
1 parent c8c0975 commit 80e945b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func main() {
for _, arg := range args {
f, err := os.Open(arg)
if err != nil {
log.Fatalf("fail to open file %s: %s", arg, err)
log.Fatalf("failed to open file %s: %s", arg, err)
}
defer f.Close()
readers = append(readers, f)
Expand Down

0 comments on commit 80e945b

Please sign in to comment.