Skip to content

Commit

Permalink
tweaked result output to use a tab for consistent looking output
Browse files Browse the repository at this point in the history
  • Loading branch information
lsh-0 committed Sep 5, 2023
1 parent a389665 commit 4c1b728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func validate_article(article_json_path string, capture_error bool) Result {
func (r Result) String() string {
// "VOR valid in 2.6ms: elife-09560-v1.xml.json"
// "POA invalid in 123.4ms: elife-09560-v1.xml.json"
msg := "%s %s in %4dms: %s"
msg := "%s %s in\t%4dms: %s"
if r.Success {
return fmt.Sprintf(msg, r.Type, "valid", r.Elapsed, r.FileName)
}
Expand Down

0 comments on commit 4c1b728

Please sign in to comment.