diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-01-07 09:35:34 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-01-07 09:35:34 +0000 |
commit | de25c15ca4b5e32ffe5c88a02c85176e73f52d02 (patch) | |
tree | 4a83f506ff25f69cb92532bd569c1ba40f7debad | |
parent | 224eb53a41d4b492e7cac76ab1a4ae566e837e2e (diff) | |
download | perl-MDK-Common-de25c15ca4b5e32ffe5c88a02c85176e73f52d02.tar perl-MDK-Common-de25c15ca4b5e32ffe5c88a02c85176e73f52d02.tar.gz perl-MDK-Common-de25c15ca4b5e32ffe5c88a02c85176e73f52d02.tar.bz2 perl-MDK-Common-de25c15ca4b5e32ffe5c88a02c85176e73f52d02.tar.xz perl-MDK-Common-de25c15ca4b5e32ffe5c88a02c85176e73f52d02.zip |
fix stupid find example
-rw-r--r-- | MDK/Common/Func.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MDK/Common/Func.pm b/MDK/Common/Func.pm index ab42513..caa5358 100644 --- a/MDK/Common/Func.pm +++ b/MDK/Common/Func.pm @@ -59,7 +59,7 @@ returns the first element where CODE returns true (or returns undef) find { /foo/ } "fo", "fob", "foobar", "foobir" -gives "fob" +gives "foobar" =item any { CODE } LIST |