fix a typo in mbox arg (#245)

`targetted` to `targeted` 👌🏻
This commit is contained in:
Austin Traver 2021-10-28 07:52:20 -07:00 committed by GitHub
parent 3d68a73e05
commit 3701ee1244
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -53,7 +53,7 @@ pub fn source_arg<'a>() -> clap::Arg<'a, 'a> {
/// Defines the target mailbox argument.
pub fn target_arg<'a>() -> clap::Arg<'a, 'a> {
clap::Arg::with_name("mbox-target")
.help("Specifies the targetted mailbox")
.help("Specifies the targeted mailbox")
.value_name("TARGET")
.required(true)
}