Skip to content

Commit

Permalink
Fix Test::Synopsis errors on POD
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffblack360 committed Mar 31, 2015
1 parent fee804a commit 6db912f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions lib/WebService/Prowl.pm
Original file line number Diff line number Diff line change
Expand Up @@ -163,16 +163,15 @@ WebService::Prowl is a interface to Prowl Public API
=head1 SYNOPSIS
This module aims to be a implementation of a interface to the Prowl Public API (as available on http://www.prowlapp.com/api.php
This module aims to be a implementation of a interface to the Prowl Public API (as available on http://www.prowlapp.com/api.php)
use WebService::Prowl;
my $ws = WebService::Prowl->new(apikey => 40byteshexadecimalstring);
my $ws = WebService::Prowl->new(apikey => '40byteshexadecimalstring');
$ws->verify || die $ws->error();
$ws->add(application => "Favotter App",
event => "new fav",
description => "your tweet saved as sekimura's favorite",
url => "https://github.com/sekimura")) {
}
url => "https://github.com/sekimura");
=head1 METHODS
Expand Down

0 comments on commit 6db912f

Please sign in to comment.