From fbcf30d9d571c114f1033a47f752c9320fd47de4 Mon Sep 17 00:00:00 2001 From: Alexander Zhirov Date: Fri, 6 Dec 2024 02:47:25 +0300 Subject: [PATCH] fix description --- source/app.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/app.d b/source/app.d index ac429bb..b504da2 100644 --- a/source/app.d +++ b/source/app.d @@ -10,14 +10,14 @@ private string programName = "chkpass"; int main(string[] args) { auto argumets = new Program(programName, chkpassVersion) .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) .add(new Argument("username") .required) .add(new Argument("password") .required)) .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) .add(new Argument("username") .required)