diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-24 12:59:12 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-24 12:59:12 +0000 |
commit | c0c5a66b1f9057869560585670408a3b64523528 (patch) | |
tree | 18399ee24a144f84795843b75974219f5944a584 /pod/perlop.pod | |
parent | 26f2972e6cc14b5198456611d023553a813ccb68 (diff) | |
download | perl-c0c5a66b1f9057869560585670408a3b64523528.tar.gz |
typo, doc tweak
p4raw-id: //depot/perl@4438
Diffstat (limited to 'pod/perlop.pod')
-rw-r--r-- | pod/perlop.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod index 6e65ba35bd..c430dbc48d 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -1074,9 +1074,9 @@ this expression: qw(foo bar baz) -is exactly equivalent to the list: +is semantically equivalent to the list: - ('foo', 'bar', 'baz') + 'foo', 'bar', 'baz' Some frequently seen examples: |