Skip to content

Commit

Permalink
io.ReadAll, not os.ReadAll
Browse files Browse the repository at this point in the history
  • Loading branch information
bodgit committed Jan 26, 2023
1 parent fb0581e commit c0c5f56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/rom/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func sync(c *cli.Context) error {

s.Reset()

b, err := os.ReadAll(os.Stdin)
b, err := io.ReadAll(os.Stdin)
if err != nil {
log.Fatal(err)
}
Expand Down

0 comments on commit c0c5f56

Please sign in to comment.