summaryrefslogtreecommitdiffhomepage
path: root/tools/nogo
diff options
context:
space:
mode:
authorMichael Pratt <mpratt@google.com>2020-06-17 12:32:59 -0700
committergVisor bot <gvisor-bot@google.com>2020-06-17 12:34:33 -0700
commit6d806ee7198422973a2e4efa9b539de7792b933f (patch)
tree460a7f620751543e0470977979068b70a1618910 /tools/nogo
parente5d97cbcc1e64185b8fab1cf563c8754edd2e52e (diff)
Remove various uses of 'blacklist'
Updates #2972 PiperOrigin-RevId: 316942245
Diffstat (limited to 'tools/nogo')
-rw-r--r--tools/nogo/matchers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/nogo/matchers.go b/tools/nogo/matchers.go
index bc5772303..32f099925 100644
--- a/tools/nogo/matchers.go
+++ b/tools/nogo/matchers.go
@@ -89,7 +89,7 @@ func (r resultExcluded) ShouldReport(d analysis.Diagnostic, _ *token.FileSet) bo
return false
}
}
- return true // Not blacklisted.
+ return true // Not excluded.
}
// andMatcher is a composite matcher.