From 3701ee1244dcb4f8a3b8dcc6a96f5673e9050b71 Mon Sep 17 00:00:00 2001 From: Austin Traver Date: Thu, 28 Oct 2021 07:52:20 -0700 Subject: [PATCH] fix a typo in mbox arg (#245) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `targetted` to `targeted` 👌🏻 --- src/domain/mbox/mbox_arg.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/domain/mbox/mbox_arg.rs b/src/domain/mbox/mbox_arg.rs index 5469934..5b4235d 100644 --- a/src/domain/mbox/mbox_arg.rs +++ b/src/domain/mbox/mbox_arg.rs @@ -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) }