Skip to content

Commit e6ef9b0

Browse files
committed
add back comment
1 parent d12c29a commit e6ef9b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/git/grep.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func GrepSearch(ctx context.Context, repo *Repository, search string, opts GrepO
6969
case GrepModeRegexp:
7070
cmd.AddArguments("--perl-regexp")
7171
cmd.AddOptionValues("-e", strings.TrimLeft(search, "-"))
72-
default:
72+
default: /* words */
7373
words := strings.Fields(search)
7474
cmd.AddArguments("--fixed-strings", "--ignore-case")
7575
for i, word := range words {

0 commit comments

Comments
 (0)