Skip to content

Commit

Permalink
docs: populate brief for all live playground examples
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Molisani <[email protected]>
  • Loading branch information
molisani authored and mkubilayk committed Nov 4, 2024
1 parent 9d0f6f0 commit 7b7c0dc
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with homogenous positional parameters",
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with boolean flag",
customUsage: [
"--quiet",
"--quiet=yes",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with bounded positional parameters",
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with counter flag",
customUsage: [
"--verbose",
"-v",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with flag configured with default value",
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with positional parameter configured with default value",
},
});
2 changes: 1 addition & 1 deletion docs/docs/features/argument-parsing/examples/enum-flag.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ export const root = buildCommand({
},
},
docs: {
brief: ""
brief: "Example for live playground with enum flag"
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ export const root = buildCommand({
},
},
docs: {
brief: ""
brief: "Example for live playground with hidden flag"
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with optional flag",
customUsage: [
"",
"--limit 1000",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with optional positional parameter",
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with parsed flags",
customUsage: [
"--item apple --price 1",
"--item orange --price 3.5",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with positional parameters",
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const root = buildCommand({
},
},
docs: {
brief: "",
brief: "Example for live playground with variadic flag",
customUsage: [
"--id 10",
"--id 10 --id 20 --id 30",
Expand Down

0 comments on commit 7b7c0dc

Please sign in to comment.