From ddc367516bcb090c6b582ff776d492feb130e1b8 Mon Sep 17 00:00:00 2001 From: jpgouin Date: Fri, 28 Feb 2025 14:46:00 +0000 Subject: [PATCH] fix test --- docs/cli/genclidoc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cli/genclidoc.go b/docs/cli/genclidoc.go index 0ede839c..7ffd030d 100644 --- a/docs/cli/genclidoc.go +++ b/docs/cli/genclidoc.go @@ -31,7 +31,7 @@ func main() { // Check if the file exists and if the content is different existingContent, err := os.ReadFile(outputFile) if err == nil && bytes.Equal(existingContent, []byte(md)) { - fmt.Println("Documentation is up to date, no changes made.") + fmt.Println("Cli Documentation is up to date, no changes made.") return }