From 23909a16df29496df43b6a9a55089342a99cffc9 Mon Sep 17 00:00:00 2001 From: Katrina Owen Date: Fri, 13 Jul 2018 14:48:02 +0100 Subject: [PATCH] Tweak submission feedback message --- cmd/submit.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/submit.go b/cmd/submit.go index 6b851bb7a..f8f1c1730 100644 --- a/cmd/submit.go +++ b/cmd/submit.go @@ -287,14 +287,14 @@ func runSubmit(cfg config.Configuration, flags *pflag.FlagSet, args []string) er msg := ` Your solution has been submitted successfully. - %s + %s ` - suffix := "View it at:" + suffix := "View it at:\n\n " if solution.AutoApprove { - suffix = "You can complete the exercise and unlock the next core exercise at:" + suffix = "You can complete the exercise and unlock the next core exercise at:\n" } fmt.Fprintf(Err, msg, suffix) - fmt.Fprintf(Out, "%s\n", solution.URL) + fmt.Fprintf(Out, " %s\n\n", solution.URL) return nil }