From bc40c9890a1798edd9038d7d558a5e2df1ef21fd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Wed, 18 Mar 2009 10:24:01 +0000 Subject: [PATCH] Dokufix --- SL/MoreCommon.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SL/MoreCommon.pm b/SL/MoreCommon.pm index 699a6724a..1ee62cca4 100644 --- a/SL/MoreCommon.pm +++ b/SL/MoreCommon.pm @@ -96,7 +96,7 @@ will modify the input arrays. # append each to each @a = qw/a b c/; @b = qw/1 2 3/; - @x = pairwise { "$a$b" } @a, @b; + @x = cross { "$a$b" } @a, @b; # returns a1, a2, a3, b1, b2, b3, c1, c2, c3 As cross expects an array but returns a list it is not directly chainable -- 2.20.1