Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
monoidic committed Nov 21, 2021
1 parent 78dd548 commit f4f0ff7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nsecx.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ func (rr *NSEC) Cover(name string) bool {
}

func reverse_arr(arr []string) {
for i, j := 0, len(arr) - 1; i < j; i, j = i+1, j-1 {
for i, j := 0, len(arr)-1; i < j; i, j = i+1, j-1 {
arr[i], arr[j] = arr[j], arr[i]
}
}

0 comments on commit f4f0ff7

Please sign in to comment.