Skip to content

Commit

Permalink
Correct a typo (#562)
Browse files Browse the repository at this point in the history
Co-authored-by: Nilay Vaish <nilayvaish@google.com>
Co-authored-by: Alexey Alexandrov <aalexand@users.noreply.github.com>
  • Loading branch information
3 people authored Oct 7, 2020
1 parent d1ec22a commit 1066cbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/driver/driver_focus.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func applyFocus(prof *profile.Profile, numLabelUnits map[string]string, cfg conf
taghide, err := compileRegexOption("taghide", cfg.TagHide, err)
tns, tnh := prof.FilterTagsByName(tagshow, taghide)
warnNoMatches(tagshow == nil || tns, "TagShow", ui)
warnNoMatches(tagignore == nil || tnh, "TagHide", ui)
warnNoMatches(taghide == nil || tnh, "TagHide", ui)

if prunefrom != nil {
prof.PruneFrom(prunefrom)
Expand Down

0 comments on commit 1066cbb

Please sign in to comment.