summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/perl/lib/Pod/InputObjects.pm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/usr.bin/perl/lib/Pod/InputObjects.pm')
-rw-r--r--gnu/usr.bin/perl/lib/Pod/InputObjects.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/perl/lib/Pod/InputObjects.pm b/gnu/usr.bin/perl/lib/Pod/InputObjects.pm
index 849182bf371..3131821775c 100644
--- a/gnu/usr.bin/perl/lib/Pod/InputObjects.pm
+++ b/gnu/usr.bin/perl/lib/Pod/InputObjects.pm
@@ -807,7 +807,7 @@ children for the top node.
sub children {
my $self = shift;
if (@_ > 0) {
- @{ $self } = (@_ == 1 and ref $_[0]) ? ${ @_ } : @_;
+ @{ $self } = (@_ == 1 and ref $_[0]) ? @{ @_ } : @_;
}
return @{ $self };
}