diff --git a/docs/docs/features/argument-parsing/examples/array-argument.txt b/docs/docs/features/argument-parsing/examples/array-argument.txt index 69a2c12..98ce5d9 100644 --- a/docs/docs/features/argument-parsing/examples/array-argument.txt +++ b/docs/docs/features/argument-parsing/examples/array-argument.txt @@ -14,6 +14,6 @@ export const root = buildCommand({ }, }, docs: { - brief: "", + brief: "Example for live playground with homogenous positional parameters", }, }); diff --git a/docs/docs/features/argument-parsing/examples/boolean-flag.txt b/docs/docs/features/argument-parsing/examples/boolean-flag.txt index e84ac04..dce4623 100644 --- a/docs/docs/features/argument-parsing/examples/boolean-flag.txt +++ b/docs/docs/features/argument-parsing/examples/boolean-flag.txt @@ -17,7 +17,7 @@ export const root = buildCommand({ }, }, docs: { - brief: "", + brief: "Example for live playground with boolean flag", customUsage: [ "--quiet", "--quiet=yes", diff --git a/docs/docs/features/argument-parsing/examples/bounded-array-argument.txt b/docs/docs/features/argument-parsing/examples/bounded-array-argument.txt index bc5ce97..74f51cf 100644 --- a/docs/docs/features/argument-parsing/examples/bounded-array-argument.txt +++ b/docs/docs/features/argument-parsing/examples/bounded-array-argument.txt @@ -16,6 +16,6 @@ export const root = buildCommand({ }, }, docs: { - brief: "", + brief: "Example for live playground with bounded positional parameters", }, }); diff --git a/docs/docs/features/argument-parsing/examples/counter-flag.txt b/docs/docs/features/argument-parsing/examples/counter-flag.txt index c767c8d..fdab706 100644 --- a/docs/docs/features/argument-parsing/examples/counter-flag.txt +++ b/docs/docs/features/argument-parsing/examples/counter-flag.txt @@ -20,7 +20,7 @@ export const root = buildCommand({ }, }, docs: { - brief: "", + brief: "Example for live playground with counter flag", customUsage: [ "--verbose", "-v", diff --git a/docs/docs/features/argument-parsing/examples/default-flag.txt b/docs/docs/features/argument-parsing/examples/default-flag.txt index 4a80cbc..07893c7 100644 --- a/docs/docs/features/argument-parsing/examples/default-flag.txt +++ b/docs/docs/features/argument-parsing/examples/default-flag.txt @@ -19,6 +19,6 @@ export const root = buildCommand({ }, }, docs: { - brief: "", + brief: "Example for live playground with flag configured with default value", }, }); diff --git a/docs/docs/features/argument-parsing/examples/default-tuple-argument.txt b/docs/docs/features/argument-parsing/examples/default-tuple-argument.txt index 53588d0..c0391e5 100644 --- a/docs/docs/features/argument-parsing/examples/default-tuple-argument.txt +++ b/docs/docs/features/argument-parsing/examples/default-tuple-argument.txt @@ -17,6 +17,6 @@ export const root = buildCommand({ }, }, docs: { - brief: "", + brief: "Example for live playground with positional parameter configured with default value", }, }); diff --git a/docs/docs/features/argument-parsing/examples/enum-flag.txt b/docs/docs/features/argument-parsing/examples/enum-flag.txt index a9fccab..a03f4b7 100644 --- a/docs/docs/features/argument-parsing/examples/enum-flag.txt +++ b/docs/docs/features/argument-parsing/examples/enum-flag.txt @@ -21,6 +21,6 @@ export const root = buildCommand({ }, }, docs: { - brief: "" + brief: "Example for live playground with enum flag" }, }); diff --git a/docs/docs/features/argument-parsing/examples/hidden-flag.txt b/docs/docs/features/argument-parsing/examples/hidden-flag.txt index 91731c4..8e8f9c3 100644 --- a/docs/docs/features/argument-parsing/examples/hidden-flag.txt +++ b/docs/docs/features/argument-parsing/examples/hidden-flag.txt @@ -28,6 +28,6 @@ export const root = buildCommand({ }, }, docs: { - brief: "" + brief: "Example for live playground with hidden flag" }, }); diff --git a/docs/docs/features/argument-parsing/examples/optional-flag.txt b/docs/docs/features/argument-parsing/examples/optional-flag.txt index b06e0c8..947a35f 100644 --- a/docs/docs/features/argument-parsing/examples/optional-flag.txt +++ b/docs/docs/features/argument-parsing/examples/optional-flag.txt @@ -19,7 +19,7 @@ export const root = buildCommand({ }, }, docs: { - brief: "", + brief: "Example for live playground with optional flag", customUsage: [ "", "--limit 1000", diff --git a/docs/docs/features/argument-parsing/examples/optional-tuple-argument.txt b/docs/docs/features/argument-parsing/examples/optional-tuple-argument.txt index 6b00e1e..fbb08ce 100644 --- a/docs/docs/features/argument-parsing/examples/optional-tuple-argument.txt +++ b/docs/docs/features/argument-parsing/examples/optional-tuple-argument.txt @@ -25,6 +25,6 @@ export const root = buildCommand({ }, }, docs: { - brief: "", + brief: "Example for live playground with optional positional parameter", }, }); diff --git a/docs/docs/features/argument-parsing/examples/parsed-flag.txt b/docs/docs/features/argument-parsing/examples/parsed-flag.txt index e52544a..2f224bd 100644 --- a/docs/docs/features/argument-parsing/examples/parsed-flag.txt +++ b/docs/docs/features/argument-parsing/examples/parsed-flag.txt @@ -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", diff --git a/docs/docs/features/argument-parsing/examples/tuple-argument.txt b/docs/docs/features/argument-parsing/examples/tuple-argument.txt index d2c72c1..c879762 100644 --- a/docs/docs/features/argument-parsing/examples/tuple-argument.txt +++ b/docs/docs/features/argument-parsing/examples/tuple-argument.txt @@ -20,6 +20,6 @@ export const root = buildCommand({ }, }, docs: { - brief: "", + brief: "Example for live playground with positional parameters", }, }); diff --git a/docs/docs/features/argument-parsing/examples/variadic-flag.txt b/docs/docs/features/argument-parsing/examples/variadic-flag.txt index 51f1a64..d9ff4eb 100644 --- a/docs/docs/features/argument-parsing/examples/variadic-flag.txt +++ b/docs/docs/features/argument-parsing/examples/variadic-flag.txt @@ -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",