summaryrefslogtreecommitdiff
path: root/pod/perlfunc.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-09-06 00:10:40 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-09-06 00:10:40 +0000
commiteb6e2d6f1e269264d7937d1be23cbbe0b6820902 (patch)
tree35c59e04b4db7af027ae8dd6addaada967b4b1b6 /pod/perlfunc.pod
parent98627ae8f09f88a753760c651828da353f8c4989 (diff)
downloadperl-eb6e2d6f1e269264d7937d1be23cbbe0b6820902.tar.gz
optional warning on join(/foo/...) (reworked suggested patch
by Mark-Jason Dominus <mjd@plover.com>) p4raw-id: //depot/perl@4083
Diffstat (limited to 'pod/perlfunc.pod')
-rw-r--r--pod/perlfunc.pod3
1 files changed, 2 insertions, 1 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index d420059d4c..f830478d23 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -2064,7 +2064,8 @@ separated by the value of EXPR, and returns that new string. Example:
$rec = join(':', $login,$passwd,$uid,$gid,$gcos,$home,$shell);
-See L</split>.
+Beware that unlike C<split>, C<join> doesn't take a pattern as its
+first argument. Compare L</split>.
=item keys HASH