Skip to content

Commit 330f665

Browse files
authored
add trailing newlines to command help messages (#77)
The main --help message already has a trailing newline, but the messages for check, fmt, and interface did not.
1 parent e893bd7 commit 330f665

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/cli/check.zig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,7 @@ const Command = struct {
289289
\\ and SuperHTML files.
290290
\\
291291
\\ --help, -h Prints this help and exits.
292+
\\
292293
, .{});
293294

294295
std.process.exit(1);

src/cli/fmt.zig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,7 @@ const Command = struct {
321321
\\ and SuperHTML files.
322322
\\
323323
\\ --help, -h Prints this help and exits.
324+
\\
324325
, .{});
325326

326327
std.process.exit(1);

src/cli/interface.zig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ const Command = struct {
175175
\\ and SuperHTML files.
176176
\\
177177
\\ --help, -h Prints this help and exits.
178+
\\
178179
, .{});
179180

180181
std.process.exit(1);

0 commit comments

Comments
 (0)