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
 
-=cut
-
 =head1 SYNOPSIS
 
     use Selenium::Remote::Driver;
@@ -38,8 +36,6 @@ Selenium::Remote::Driver - Perl Client for Selenium Remote Driver
     print $driver->get_title();
     $driver->quit();
 
-=cut
-
 =head1 DESCRIPTION
 
 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
 the Selenium Server (Selenium Server is a Java application).
 
-=cut
-
 =head1 USAGE (read this first)
 
 =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
 created when you use the find_* methods.
 
-=cut
-
 =head1 FUNCTIONS
 
-=cut
-
 =head2 new
 
  Description:
@@ -154,7 +144,7 @@ created when you use the find_* methods.
                                               );
     or
     my $driver = Selenium::Remote::Driver->new('proxy' => {'proxyType' => 'manual', 'httpProxy' => 'myproxy.com:1234'});
-    
+
 =cut
 
 sub new {