diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-08 18:28:13 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-08 18:28:13 +0000 |
commit | 91e74348ab129f737e0d9da75481cd4eb7414ba4 (patch) | |
tree | b700d3ed7ddb36fb2d15c007f31f5bd0346d8418 /lib/Text | |
parent | 1426bbf4b7d39af0f80ec0afcb4869d2bc3f0a90 (diff) | |
download | perl-91e74348ab129f737e0d9da75481cd4eb7414ba4.tar.gz |
Do away with array context, from Daniel Chetlin <daniel@chetlin.com>
(either perlbug or p5p ate the original), plus regen
perlapi and perltoc.
p4raw-id: //depot/perl@6553
Diffstat (limited to 'lib/Text')
-rw-r--r-- | lib/Text/Soundex.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Text/Soundex.pm b/lib/Text/Soundex.pm index 3079b90612..d5887640b8 100644 --- a/lib/Text/Soundex.pm +++ b/lib/Text/Soundex.pm @@ -108,7 +108,7 @@ many people seem to prefer an I<unlikely> value like C<Z000> can be assigned to C<$soundex_nocode>. In scalar context C<soundex> returns the soundex code of its first -argument, and in array context a list is returned in which each element is the +argument, and in list context a list is returned in which each element is the soundex code for the corresponding argument passed to C<soundex> e.g. @codes = soundex qw(Mike Stok); |