This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
makedepend.SH: Split too long lines; properly join
[perl5.git] / ext / arybase / arybase.pm
index 829f2db..67c71e7 100644 (file)
@@ -1,6 +1,6 @@
 package arybase;
 
-our $VERSION = "0.01";
+our $VERSION = "0.08";
 
 require XSLoader;
 XSLoader::load(); # This returns true, which makes require happy.
@@ -14,7 +14,7 @@ arybase - Set indexing base via $[
 =head1 SYNOPSIS
 
     $[ = 1;
-    
+
     @a = qw(Sun Mon Tue Wed Thu Fri Sat);
     print $a[3], "\n";  # prints Tue
 
@@ -44,7 +44,7 @@ It affects the following operations:
     splice @array, $index, ...
     each @array
     keys @array
-    
+
     index $string, $substring  # return value is affected
     pos $string
     substr $string, $offset, ...