Skip to content

Commit

Permalink
Fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew French committed Dec 28, 2022
1 parent c8977b5 commit 1d7720f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/deflate/deflate.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

func main() {
if len(os.Args) != 3 {
log.Fatalf("Requires two inputs: an source file and a destination file")
log.Fatalf("Requires two inputs: a source file and a destination file")
}

in, err := os.Open(os.Args[1])
Expand Down
2 changes: 1 addition & 1 deletion cmd/inflate/inflate.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

func main() {
if len(os.Args) != 3 {
log.Fatalf("Requires two inputs: an source file and a destination file")
log.Fatalf("Requires two inputs: a source file and a destination file")
}

in, err := os.Open(os.Args[1])
Expand Down

0 comments on commit 1d7720f

Please sign in to comment.