diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-06-04 22:32:50 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-06-04 22:32:50 +0000 |
commit | 4b021f5f3b3636124de9776768d5a16528d92310 (patch) | |
tree | d1575d66989533943671f7e52d58d0418b0a05ff /pod/perlsyn.pod | |
parent | 326b5008ebd8d91bf6b00d96127d2d711c9f2132 (diff) | |
download | perl-4b021f5f3b3636124de9776768d5a16528d92310.tar.gz |
The smart match table was duplicated in source code and in perlsyn,
so remove the one in the source code
p4raw-id: //depot/perl@28349
Diffstat (limited to 'pod/perlsyn.pod')
-rw-r--r-- | pod/perlsyn.pod | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod index e8ef30f09d..d381f267f8 100644 --- a/pod/perlsyn.pod +++ b/pod/perlsyn.pod @@ -698,7 +698,9 @@ order, determines the match behaviour. + - this must be a code reference whose prototype (if present) is not "" (subs with a "" prototype are dealt with by the 'Code()' entry lower down) - * - if a circular reference is found, we fall back to referential equality + * - that is, each element matches the element of same index in the other + array. If a circular reference is found, we fall back to referential + equality. ! - either a real number, or a string that looks like a number The "matching code" doesn't represent the I<real> matching code, |