docs(internal/recipe): update comment on search pattern default to "Go-style"

Changes the comment to describe the default as "Go-style" instead of the specific string for better generality.
This commit is contained in:
Greg Gauthier 2026-03-07 00:41:39 +00:00
parent 757f422765
commit 213a9869e6

View File

@ -110,7 +110,7 @@ func (r *Runner) discoverFiles() []string {
}
}
// 4. Use the configurable search pattern (defaults to "if err != nil")
// 4. Use a configurable search pattern (defaults to Go-style)
searchFor := r.Recipe.SearchPattern
if searchFor == "" {
searchFor = "if err != nil"