grammar fix: s/does not exists/does not exist/g

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2019-12-13 12:09:44 +01:00
parent 56054937a6
commit a7f047588e
2 changed files with 3 additions and 3 deletions

View File

@ -119,9 +119,9 @@ __PACKAGE__->register_method ({
my $vmlist = PVE::Cluster::get_vmlist(); my $vmlist = PVE::Cluster::get_vmlist();
my $guest_info = $vmlist->{ids}->{$guest}; my $guest_info = $vmlist->{ids}->{$guest};
die "Guest '$guest' does not exists.\n" die "Guest '$guest' does not exist.\n"
if !defined($guest_info); if !defined($guest_info);
die "Target '$param->{target}' does not exists.\n" die "Target '$param->{target}' does not exist.\n"
if defined($param->{target}) && !defined($nodelist->{$param->{target}}); if defined($param->{target}) && !defined($nodelist->{$param->{target}});
my $guest_class = $PVE::API2::Replication::lookup_guest_class->($guest_info->{type}); my $guest_class = $PVE::API2::Replication::lookup_guest_class->($guest_info->{type});

View File

@ -227,7 +227,7 @@ sub resolve_proxyto {
if !$node; if !$node;
} else { } else {
$node = $uri_param->{$proxyto}; $node = $uri_param->{$proxyto};
raise_param_exc({ $proxyto => "proxyto parameter does not exists"}) raise_param_exc({ $proxyto => "proxyto parameter does not exist"})
if !$node; if !$node;
} }
return $node; return $node;