Skip to content

Commit b0ae036

Browse files
committed
[doc] File::Spec::Functions: Add missing my to SYNOPSIS
Seems like this particular module was missing the `my` keyword in its synopsis added previously distribution-wise. Bump distribution version.
1 parent 88a35d6 commit b0ae036

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

dist/PathTools/lib/File/Spec/AmigaOS.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package File::Spec::AmigaOS;
33
use strict;
44
require File::Spec::Unix;
55

6-
our $VERSION = '3.90';
6+
our $VERSION = '3.91';
77
$VERSION =~ tr/_//d;
88

99
our @ISA = qw(File::Spec::Unix);

dist/PathTools/lib/File/Spec/Cygwin.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package File::Spec::Cygwin;
33
use strict;
44
require File::Spec::Unix;
55

6-
our $VERSION = '3.90';
6+
our $VERSION = '3.91';
77
$VERSION =~ tr/_//d;
88

99
our @ISA = qw(File::Spec::Unix);

dist/PathTools/lib/File/Spec/Epoc.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package File::Spec::Epoc;
22

33
use strict;
44

5-
our $VERSION = '3.90';
5+
our $VERSION = '3.91';
66
$VERSION =~ tr/_//d;
77

88
require File::Spec::Unix;

dist/PathTools/lib/File/Spec/Functions.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package File::Spec::Functions;
33
use File::Spec;
44
use strict;
55

6-
our $VERSION = '3.90';
6+
our $VERSION = '3.91';
77
$VERSION =~ tr/_//d;
88

99
require Exporter;
@@ -72,7 +72,7 @@ File::Spec::Functions - portably perform operations on file names
7272
=head1 SYNOPSIS
7373
7474
use File::Spec::Functions;
75-
$x = catfile('a','b');
75+
my $x = catfile('a', 'b');
7676
7777
=head1 DESCRIPTION
7878

dist/PathTools/lib/File/Spec/Mac.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44
use Cwd ();
55
require File::Spec::Unix;
66

7-
our $VERSION = '3.90';
7+
our $VERSION = '3.91';
88
$VERSION =~ tr/_//d;
99

1010
our @ISA = qw(File::Spec::Unix);

dist/PathTools/lib/File/Spec/OS2.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44
use Cwd ();
55
require File::Spec::Unix;
66

7-
our $VERSION = '3.90';
7+
our $VERSION = '3.91';
88
$VERSION =~ tr/_//d;
99

1010
our @ISA = qw(File::Spec::Unix);

dist/PathTools/lib/File/Spec/Unix.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package File::Spec::Unix;
33
use strict;
44
use Cwd ();
55

6-
our $VERSION = '3.90';
6+
our $VERSION = '3.91';
77
$VERSION =~ tr/_//d;
88

99
=head1 NAME

dist/PathTools/lib/File/Spec/VMS.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44
use Cwd ();
55
require File::Spec::Unix;
66

7-
our $VERSION = '3.90';
7+
our $VERSION = '3.91';
88
$VERSION =~ tr/_//d;
99

1010
our @ISA = qw(File::Spec::Unix);

dist/PathTools/lib/File/Spec/Win32.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use strict;
55
use Cwd ();
66
require File::Spec::Unix;
77

8-
our $VERSION = '3.90';
8+
our $VERSION = '3.91';
99
$VERSION =~ tr/_//d;
1010

1111
our @ISA = qw(File::Spec::Unix);

0 commit comments

Comments
 (0)