Skip to content

Commit

Permalink
Add missing space to the console output (#1810)
Browse files Browse the repository at this point in the history
  • Loading branch information
Khalil-Ullah-Hafeez authored Dec 28, 2022
1 parent b762590 commit 65a5979
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/svelte-check/src/writers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export class HumanFriendlyWriter implements Writer {
this.stream.write('====================================\n');
const message = [
'svelte-check found ',
`${errorCount} ${errorCount === 1 ? 'error' : 'errors'} and`,
`${errorCount} ${errorCount === 1 ? 'error' : 'errors'} and `,
`${warningCount} ${warningCount === 1 ? 'warning' : 'warnings'}\n`
].join('');
if (errorCount !== 0) {
Expand Down

0 comments on commit 65a5979

Please sign in to comment.