Skip to content

Commit 24fc9a3

Browse files
authored
Add comma in gallery link messages (#6304)
* Initial plan * Add comma between gallery and visit in PrintGalleryLinks messages
1 parent aa91b5a commit 24fc9a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/azd/pkg/templates/template_manager.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,9 +260,9 @@ func PromptTemplate(
260260
// PrintGalleryLinks prints the template gallery banner message to the given writer.
261261
func PrintGalleryLinks(w io.Writer) {
262262
fmt.Fprintln(w)
263-
fmt.Fprintln(w, "For Microsoft AI Gallery visit",
263+
fmt.Fprintln(w, "For Microsoft AI Gallery, visit",
264264
output.WithLinkFormat("https://azure.github.io/ai-app-templates"))
265-
fmt.Fprintln(w, "For azd community gallery (awesome-azd) visit",
265+
fmt.Fprintln(w, "For azd community gallery (awesome-azd), visit",
266266
output.WithLinkFormat("https://azure.github.io/awesome-azd"))
267267
fmt.Fprintln(w)
268268
}

0 commit comments

Comments
 (0)