Add documentation string to input option

This commit is contained in:
Patrick Lühne 2020-02-03 22:50:53 +01:00
parent 82b3176a40
commit c953b465e9
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
1 changed files with 1 additions and 0 deletions

View File

@ -7,6 +7,7 @@ enum Command
#[structopt(about = "Verifies a logic program against a specification")]
VerifyProgram
{
/// ASP input program (one or multiple files)
#[structopt(parse(from_os_str), required(true))]
input: Vec<std::path::PathBuf>,
}