From 213a9869e6a4d0c5139dc32bfed8c212eaf74a60 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Sat, 7 Mar 2026 00:41:39 +0000 Subject: [PATCH] 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. --- internal/recipe/runner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/recipe/runner.go b/internal/recipe/runner.go index f8f8373..cc008a8 100644 --- a/internal/recipe/runner.go +++ b/internal/recipe/runner.go @@ -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"