Skip to content

Commit fbcc870

Browse files
Tyriarchaynabors
andauthored
fix(mkdir): Use lower case for arg names (#2590)
Co-authored-by: Chay Nabors <[email protected]>
1 parent 4cfa144 commit fbcc870

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/mkdir.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const completionSpec: Fig.Spec = {
1010
{
1111
name: ["-m", "--mode"],
1212
description: "Set file mode (as in chmod), not a=rwx - umask",
13-
args: { name: "MODE" },
13+
args: { name: "mode" },
1414
},
1515
{
1616
name: ["-p", "--parents"],
@@ -22,9 +22,8 @@ const completionSpec: Fig.Spec = {
2222
},
2323
{
2424
name: ["-Z", "--context"],
25-
description:
26-
"Set the SELinux security context of each created directory to CTX",
27-
args: { name: "CTX" },
25+
description: "Set the SELinux security context of each created directory",
26+
args: { name: "context" },
2827
},
2928
{ name: "--help", description: "Display this help and exit" },
3029
{

0 commit comments

Comments
 (0)