fix description

This commit is contained in:
Alexander Zhirov 2024-12-06 02:47:25 +03:00
parent b9e341dfc1
commit fbcf30d9d5
1 changed files with 2 additions and 2 deletions

View File

@ -10,14 +10,14 @@ private string programName = "chkpass";
int main(string[] args) { int main(string[] args) {
auto argumets = new Program(programName, chkpassVersion) auto argumets = new Program(programName, chkpassVersion)
.add(new Command("check", "check user password") .add(new Command("check", "check user password")
.add(new Option("m", "module", "use a dedicated PAM module") .add(new Option("m", "module", "use a special PAM module")
.optional) .optional)
.add(new Argument("username") .add(new Argument("username")
.required) .required)
.add(new Argument("password") .add(new Argument("password")
.required)) .required))
.add(new Command("change", "change user password") .add(new Command("change", "change user password")
.add(new Option("m", "module", "use a dedicated PAM module") .add(new Option("m", "module", "use a special PAM module")
.optional) .optional)
.add(new Argument("username") .add(new Argument("username")
.required) .required)