summaryrefslogtreecommitdiff
path: root/pod/perlsyn.pod
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-06-04 22:32:50 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-06-04 22:32:50 +0000
commit4b021f5f3b3636124de9776768d5a16528d92310 (patch)
treed1575d66989533943671f7e52d58d0418b0a05ff /pod/perlsyn.pod
parent326b5008ebd8d91bf6b00d96127d2d711c9f2132 (diff)
downloadperl-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.pod4
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,