From f676d9d08216ebbc54e5f27724ab4079cb8cf9dc Mon Sep 17 00:00:00 2001 From: Alex Suraci Date: Thu, 7 May 2020 23:53:31 -0400 Subject: [PATCH] consistency between cli and web ui error Signed-off-by: Alex Suraci --- errors.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/errors.go b/errors.go index 7ec8366..e749950 100644 --- a/errors.go +++ b/errors.go @@ -136,6 +136,8 @@ func (err AmbiguousReferenceError) PrettyPrint(out io.Writer) { fmt.Fprintf(out, "- %s:\n", loc.FilePath) loc.AnnotateLocation(textio.NewPrefixWriter(out, " ")) } + + fmt.Fprintf(out, "one of these must be changed.\n") } func (err AmbiguousReferenceError) PrettyHTML(out io.Writer) error {