Skip to content

Commit bc9de95

Browse files
committed
Align prompt in help example
Was accidentally unaligned in jqlang#2747 Now looks like this: Example: $ echo '{"foo": 0}' | jq . { "foo": 0 } Before looks like this: Example: $ echo '{"foo": 0}' | jq . { "foo": 0 }
1 parent 4705a22 commit bc9de95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ static void usage(int code, int keep_it_short) {
5959
"The simplest filter is ., which copies jq's input to its output\n"
6060
"unmodified except for formatting. For more advanced filters see\n"
6161
"the jq(1) manpage (\"man jq\") and/or https://jqlang.github.io/jq/.\n\n"
62-
"Example:\n\n\t $ echo '{\"foo\": 0}' | jq .\n"
62+
"Example:\n\n\t$ echo '{\"foo\": 0}' | jq .\n"
6363
"\t{\n\t \"foo\": 0\n\t}\n\n",
6464
JQ_VERSION, progname, progname, progname);
6565
if (keep_it_short) {

0 commit comments

Comments
 (0)