Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cli.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ For help on these, use 'analyze --help' or 'fix --help'."
(define file-string (if (> total-files 1) "files" "file"))
(if (zero? total-fixes)
(printf "Resyntax found no issues.")
(printf "Automated Resyntax fixes\n\nResyntax fixed ~a ~a in ~a ~a."
(printf "Resyntax fixed ~a ~a in ~a ~a."
total-fixes issue-string total-files file-string))
(unless (zero? total-fixes)
(printf "\n")
Expand All @@ -378,7 +378,7 @@ For help on these, use 'analyze --help' or 'fix --help'."

;; Output JSON
(write-json
(hasheq 'commit_message commit-message
(hasheq 'commit_message_body commit-message
'fix_count total-fixes))
(newline))

Expand Down