Browse Source

Fix broken use of =cut

It's only needed to end a chunk of =pod before some code
Dave Rolsky 12 years ago
parent
commit
db99a00f48
1 changed files with 1 additions and 11 deletions
  1. 1 11
      lib/Selenium/Remote/Driver.pm

+ 1 - 11
lib/Selenium/Remote/Driver.pm

@@ -27,8 +27,6 @@ use constant FINDERS => {
 
 
 Selenium::Remote::Driver - Perl Client for Selenium Remote Driver
 Selenium::Remote::Driver - Perl Client for Selenium Remote Driver
 
 
-=cut
-
 =head1 SYNOPSIS
 =head1 SYNOPSIS
 
 
     use Selenium::Remote::Driver;
     use Selenium::Remote::Driver;
@@ -38,8 +36,6 @@ Selenium::Remote::Driver - Perl Client for Selenium Remote Driver
     print $driver->get_title();
     print $driver->get_title();
     $driver->quit();
     $driver->quit();
 
 
-=cut
-
 =head1 DESCRIPTION
 =head1 DESCRIPTION
 
 
 Selenium is a test tool that allows you to write
 Selenium is a test tool that allows you to write
@@ -55,8 +51,6 @@ together with the Selenium Server, you can automatically control any supported
 browser. To use this module, you need to have already downloaded and started
 browser. To use this module, you need to have already downloaded and started
 the Selenium Server (Selenium Server is a Java application).
 the Selenium Server (Selenium Server is a Java application).
 
 
-=cut
-
 =head1 USAGE (read this first)
 =head1 USAGE (read this first)
 
 
 =head2 Remote Driver Response
 =head2 Remote Driver Response
@@ -87,12 +81,8 @@ your further actions will fail for that element. Finally, just remember that you
 don't have to instantiate WebElement objects at all - they will be automatically
 don't have to instantiate WebElement objects at all - they will be automatically
 created when you use the find_* methods.
 created when you use the find_* methods.
 
 
-=cut
-
 =head1 FUNCTIONS
 =head1 FUNCTIONS
 
 
-=cut
-
 =head2 new
 =head2 new
 
 
  Description:
  Description:
@@ -154,7 +144,7 @@ created when you use the find_* methods.
                                               );
                                               );
     or
     or
     my $driver = Selenium::Remote::Driver->new('proxy' => {'proxyType' => 'manual', 'httpProxy' => 'myproxy.com:1234'});
     my $driver = Selenium::Remote::Driver->new('proxy' => {'proxyType' => 'manual', 'httpProxy' => 'myproxy.com:1234'});
-    
+
 =cut
 =cut
 
 
 sub new {
 sub new {