Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
be even more specific in method descriptions
  • Loading branch information
kraih committed Aug 14, 2014
1 parent b2068a1 commit 9b7c1e2
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions lib/Mojo/UserAgent.pm
Expand Up @@ -694,8 +694,8 @@ L<Mojo::UserAgent::Transactor/"websocket">.
Perform blocking C<DELETE> request and return resulting
L<Mojo::Transaction::HTTP> object, takes the same arguments as
L<Mojo::UserAgent::Transactor/"tx"> (except for the C<DELETE> method). You can
also append a callback to perform requests non-blocking.
L<Mojo::UserAgent::Transactor/"tx"> (except for the C<DELETE> method, which is
implied). You can also append a callback to perform requests non-blocking.
$ua->delete('http://example.com' => sub {
my ($ua, $tx) = @_;
Expand All @@ -714,8 +714,8 @@ also append a callback to perform requests non-blocking.
Perform blocking C<GET> request and return resulting
L<Mojo::Transaction::HTTP> object, takes the same arguments as
L<Mojo::UserAgent::Transactor/"tx"> (except for the C<GET> method). You can
also append a callback to perform requests non-blocking.
L<Mojo::UserAgent::Transactor/"tx"> (except for the C<GET> method, which is
implied). You can also append a callback to perform requests non-blocking.
$ua->get('http://example.com' => sub {
my ($ua, $tx) = @_;
Expand All @@ -734,8 +734,8 @@ also append a callback to perform requests non-blocking.
Perform blocking C<HEAD> request and return resulting
L<Mojo::Transaction::HTTP> object, takes the same arguments as
L<Mojo::UserAgent::Transactor/"tx"> (except for the C<HEAD> method). You can
also append a callback to perform requests non-blocking.
L<Mojo::UserAgent::Transactor/"tx"> (except for the C<HEAD> method, which is
implied). You can also append a callback to perform requests non-blocking.
$ua->head('http://example.com' => sub {
my ($ua, $tx) = @_;
Expand All @@ -754,8 +754,8 @@ also append a callback to perform requests non-blocking.
Perform blocking C<OPTIONS> request and return resulting
L<Mojo::Transaction::HTTP> object, takes the same arguments as
L<Mojo::UserAgent::Transactor/"tx"> (except for the C<OPTIONS> method). You
can also append a callback to perform requests non-blocking.
L<Mojo::UserAgent::Transactor/"tx"> (except for the C<OPTIONS> method, which
is implied). You can also append a callback to perform requests non-blocking.
$ua->options('http://example.com' => sub {
my ($ua, $tx) = @_;
Expand All @@ -774,8 +774,8 @@ can also append a callback to perform requests non-blocking.
Perform blocking C<PATCH> request and return resulting
L<Mojo::Transaction::HTTP> object, takes the same arguments as
L<Mojo::UserAgent::Transactor/"tx"> (except for the C<PATCH> method). You can
also append a callback to perform requests non-blocking.
L<Mojo::UserAgent::Transactor/"tx"> (except for the C<PATCH> method, which is
implied). You can also append a callback to perform requests non-blocking.
$ua->patch('http://example.com' => sub {
my ($ua, $tx) = @_;
Expand All @@ -794,8 +794,8 @@ also append a callback to perform requests non-blocking.
Perform blocking C<POST> request and return resulting
L<Mojo::Transaction::HTTP> object, takes the same arguments as
L<Mojo::UserAgent::Transactor/"tx"> (except for the C<POST> method). You can
also append a callback to perform requests non-blocking.
L<Mojo::UserAgent::Transactor/"tx"> (except for the C<POST> method, which is
implied). You can also append a callback to perform requests non-blocking.
$ua->post('http://example.com' => sub {
my ($ua, $tx) = @_;
Expand All @@ -814,8 +814,8 @@ also append a callback to perform requests non-blocking.
Perform blocking C<PUT> request and return resulting
L<Mojo::Transaction::HTTP> object, takes the same arguments as
L<Mojo::UserAgent::Transactor/"tx"> (except for the C<PUT> method). You can
also append a callback to perform requests non-blocking.
L<Mojo::UserAgent::Transactor/"tx"> (except for the C<PUT> method, which is
implied). You can also append a callback to perform requests non-blocking.
$ua->put('http://example.com' => sub {
my ($ua, $tx) = @_;
Expand Down

0 comments on commit 9b7c1e2

Please sign in to comment.