perldelta: consistent semicolons in CGI example
authorFather Chrysostomos <sprout@cpan.org>
Fri, 11 May 2012 16:17:10 +0000 (09:17 -0700)
committerFather Chrysostomos <sprout@cpan.org>
Fri, 11 May 2012 16:17:10 +0000 (09:17 -0700)
pod/perldelta.pod

index cc4750c..4d25f38 100644 (file)
@@ -1063,10 +1063,10 @@ workaround it. Check for application before upgrading to this release.
 
 Examples of affected method calls:
 
-  $q->url(-absolute => 1, -query => 1, -path_info => 1 )
-  $q->url(-path=>1)
-  $q->url(-full=>1,-path=>1)
-  $q->url(-rewrite=>1,-path=>1)
+  $q->url(-absolute => 1, -query => 1, -path_info => 1);
+  $q->url(-path=>1);
+  $q->url(-full=>1,-path=>1);
+  $q->url(-rewrite=>1,-path=>1);
   $q->self_url();
 
 We no longer read from STDIN when the Content-Length is not set,