remove use of 'v' as a variable name

This commit is contained in:
Darien Raymond
2016-11-27 17:01:44 +01:00
parent 77e1427845
commit d00f8eef56
12 changed files with 45 additions and 45 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
package predicate
func BytesAll(array []byte, b byte) bool {
for _, v := range array {
if v != b {
for _, val := range array {
if val != b {
return false
}
}