diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2009-05-05 09:46:06 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2009-05-05 09:46:06 +0200 |
commit | 329802ba974fc09df2d12cae487624062c657883 (patch) | |
tree | 6f949e6316848abf089a13999e4ac0d76aa6e533 /pod | |
parent | f008545ed2e0f4f26c47d5aeae3cb2d48594990c (diff) | |
download | perl-329802ba974fc09df2d12cae487624062c657883.tar.gz |
Clarify that @a ~~ @b recursively smart matches
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlsyn.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod index 102f38e700..8b448505c1 100644 --- a/pod/perlsyn.pod +++ b/pod/perlsyn.pod @@ -708,8 +708,8 @@ entries apply in those cases. 1 - empty hashes or arrays will match. - 2 - that is, each element matches the element of same index in the other - array. [3] + 2 - that is, each element smart-matches the element of same index in the + other array. [3] 3 - If a circular reference is found, we fall back to referential equality. 4 - a range is written EXPR..EXPR (using the C<..> range operator, but NOT the three-dot version C<...>, which will be treated as a boolean |