diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-09-06 00:10:40 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-09-06 00:10:40 +0000 |
commit | eb6e2d6f1e269264d7937d1be23cbbe0b6820902 (patch) | |
tree | 35c59e04b4db7af027ae8dd6addaada967b4b1b6 /pod/perlfunc.pod | |
parent | 98627ae8f09f88a753760c651828da353f8c4989 (diff) | |
download | perl-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.pod | 3 |
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 |