Skip to content

Commit

Permalink
Merge branch 'main' into docs/placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
mkubilayk authored Nov 4, 2024
2 parents 4e5051b + 7b7c0dc commit e074e26
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 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
2 changes: 1 addition & 1 deletion docs/src/css/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ a.button {
}

.editor-navbar {
z-index: 1;
z-index: 10;
position: absolute;
top: 3px;
right: 20px;
Expand Down

0 comments on commit e074e26

Please sign in to comment.