Skip to content

Commit 7b7c0dc

Browse files
molisanimkubilayk
authored andcommitted
docs: populate brief for all live playground examples
Signed-off-by: Michael Molisani <git@molisani.us>
1 parent 9d0f6f0 commit 7b7c0dc

13 files changed

+13
-13
lines changed

docs/docs/features/argument-parsing/examples/array-argument.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ export const root = buildCommand({
1414
},
1515
},
1616
docs: {
17-
brief: "",
17+
brief: "Example for live playground with homogenous positional parameters",
1818
},
1919
});

docs/docs/features/argument-parsing/examples/boolean-flag.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const root = buildCommand({
1717
},
1818
},
1919
docs: {
20-
brief: "",
20+
brief: "Example for live playground with boolean flag",
2121
customUsage: [
2222
"--quiet",
2323
"--quiet=yes",

docs/docs/features/argument-parsing/examples/bounded-array-argument.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ export const root = buildCommand({
1616
},
1717
},
1818
docs: {
19-
brief: "",
19+
brief: "Example for live playground with bounded positional parameters",
2020
},
2121
});

docs/docs/features/argument-parsing/examples/counter-flag.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const root = buildCommand({
2020
},
2121
},
2222
docs: {
23-
brief: "",
23+
brief: "Example for live playground with counter flag",
2424
customUsage: [
2525
"--verbose",
2626
"-v",

docs/docs/features/argument-parsing/examples/default-flag.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ export const root = buildCommand({
1919
},
2020
},
2121
docs: {
22-
brief: "",
22+
brief: "Example for live playground with flag configured with default value",
2323
},
2424
});

docs/docs/features/argument-parsing/examples/default-tuple-argument.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ export const root = buildCommand({
1717
},
1818
},
1919
docs: {
20-
brief: "",
20+
brief: "Example for live playground with positional parameter configured with default value",
2121
},
2222
});

docs/docs/features/argument-parsing/examples/enum-flag.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ export const root = buildCommand({
2121
},
2222
},
2323
docs: {
24-
brief: ""
24+
brief: "Example for live playground with enum flag"
2525
},
2626
});

docs/docs/features/argument-parsing/examples/hidden-flag.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ export const root = buildCommand({
2828
},
2929
},
3030
docs: {
31-
brief: ""
31+
brief: "Example for live playground with hidden flag"
3232
},
3333
});

docs/docs/features/argument-parsing/examples/optional-flag.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const root = buildCommand({
1919
},
2020
},
2121
docs: {
22-
brief: "",
22+
brief: "Example for live playground with optional flag",
2323
customUsage: [
2424
"",
2525
"--limit 1000",

docs/docs/features/argument-parsing/examples/optional-tuple-argument.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ export const root = buildCommand({
2525
},
2626
},
2727
docs: {
28-
brief: "",
28+
brief: "Example for live playground with optional positional parameter",
2929
},
3030
});

docs/docs/features/argument-parsing/examples/parsed-flag.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const root = buildCommand({
2424
},
2525
},
2626
docs: {
27-
brief: "",
27+
brief: "Example for live playground with parsed flags",
2828
customUsage: [
2929
"--item apple --price 1",
3030
"--item orange --price 3.5",

docs/docs/features/argument-parsing/examples/tuple-argument.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ export const root = buildCommand({
2020
},
2121
},
2222
docs: {
23-
brief: "",
23+
brief: "Example for live playground with positional parameters",
2424
},
2525
});

docs/docs/features/argument-parsing/examples/variadic-flag.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const root = buildCommand({
2222
},
2323
},
2424
docs: {
25-
brief: "",
25+
brief: "Example for live playground with variadic flag",
2626
customUsage: [
2727
"--id 10",
2828
"--id 10 --id 20 --id 30",

0 commit comments

Comments
 (0)