send-email: fix grammo in the prompt that asks e-mail recipients

The message, which dates back to the very original version 83b24437
made in 2005, sounds clumsy, grammatically incorrect, and is hard to
understand.

Reported-by: John Darrington <john@darrington.wattle.id.au>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Junio C Hamano 2016-04-24 12:31:44 -07:00
parent 765428699a
commit 0d6b21e781

View file

@ -785,9 +785,10 @@ sub file_declares_8bit_cte {
# But it's a no-op to run sanitize_address on an already sanitized address. # But it's a no-op to run sanitize_address on an already sanitized address.
$sender = sanitize_address($sender); $sender = sanitize_address($sender);
my $to_whom = "To whom should the emails be sent (if anyone)?";
my $prompting = 0; my $prompting = 0;
if (!@initial_to && !defined $to_cmd) { if (!@initial_to && !defined $to_cmd) {
my $to = ask("Who should the emails be sent to (if any)? ", my $to = ask("$to_whom ",
default => "", default => "",
valid_re => qr/\@.*\./, confirm_only => 1); valid_re => qr/\@.*\./, confirm_only => 1);
push @initial_to, parse_address_line($to) if defined $to; # sanitized/validated later push @initial_to, parse_address_line($to) if defined $to; # sanitized/validated later
@ -885,7 +886,7 @@ sub validate_address {
cleanup_compose_files(); cleanup_compose_files();
exit(0); exit(0);
} }
$address = ask("Who should the email be sent to (if any)? ", $address = ask("$to_whom ",
default => "", default => "",
valid_re => qr/\@.*\./, confirm_only => 1); valid_re => qr/\@.*\./, confirm_only => 1);
} }