Update comments/doc of the methods changes

- Just a change to two doc of 'GET' and 'DELETE' method subs.
This commit is contained in:
Kevin Scott Adams 2020-07-14 17:32:53 -04:00
parent ac1c31f2d0
commit c3935785c0
1 changed files with 2 additions and 2 deletions

View File

@ -225,7 +225,7 @@ They can be combined with the response methods, such as:
print $client->GET('/search/?q=foobar')->responseContent(); print $client->GET('/search/?q=foobar')->responseContent();
=head3 GET ( $url, [%$headers] ) =head3 GET ( $url, [$body_content, %$headers] )
Preform an HTTP GET to the resource specified. Takes an optional hashref of custom request headers. Preform an HTTP GET to the resource specified. Takes an optional hashref of custom request headers.
@ -269,7 +269,7 @@ sub POST {
return $self->request('POST', @_); return $self->request('POST', @_);
} }
=head3 DELETE ( $url, [%$headers] ) =head3 DELETE ( $url, [$body_content, %$headers] )
Preform an HTTP DELETE to the resource specified. Takes an optional hashref of custom request headers. Preform an HTTP DELETE to the resource specified. Takes an optional hashref of custom request headers.