Add documentation string to input option

This commit is contained in:
2020-02-03 22:50:53 +01:00
parent 82b3176a40
commit c953b465e9

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>,
}