diff options
author | Thorsten Glaser <tg@mirbsd.org> | 2011-10-16 00:42:39 +0000 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-10-15 22:51:25 -0700 |
commit | 81de5c053fcd95426314f740a6ec417eadd1eb65 (patch) | |
tree | 0fd26264dbe86edfa6076c102ce3e8d275c88633 /lib | |
parent | 6e6708186f21e01745b94f01d5f630948e1cbcb2 (diff) | |
download | perl-81de5c053fcd95426314f740a6ec417eadd1eb65.tar.gz |
fix a typo in a comment
someone already fixed the expanshions but kept the preformed on the same line
Signed-off-by: Thorsten Glaser <tg@mirbsd.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/File/DosGlob.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/File/DosGlob.pm b/lib/File/DosGlob.pm index 90434fd467..e8fcc97444 100644 --- a/lib/File/DosGlob.pm +++ b/lib/File/DosGlob.pm @@ -139,7 +139,7 @@ sub glob { my $tmp = "$start$match$end"; while ( $tmp =~ s/^(.*?)(?<!\\)\{(?:.*(?<!\\)\,)?(.*\Q$match\E.*?)(?:(?<!\\)\,.*)?(?<!\\)\}(.*)$/$1$2$3/ ) { #print "Striped: $tmp\n"; - # these expansions will be preformed by the original, + # these expansions will be performed by the original, # when we call REHASH. } push @appendpat, ("$tmp"); |