Skip to content

Commit

Permalink
fix min() bug (typo)
Browse files Browse the repository at this point in the history
  • Loading branch information
alchem1ster committed Apr 15, 2023
1 parent a16d52e commit 0452ae8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ func main() {

func min(x, y int) int {
if x > y {
return x
return y
}
return y
return x
}

func fixReadOnly(dir string) {
Expand Down

0 comments on commit 0452ae8

Please sign in to comment.