From a0f90907ae19f8e654b77cf47cbc56784b8eff9c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Wed, 10 Sep 1997 14:15:46 +0200
Subject: [PATCH] Fixed bug in explanation of column().

Rev: tutorial/tutorial.wmml:1.24
---
 tutorial/tutorial.wmml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tutorial/tutorial.wmml b/tutorial/tutorial.wmml
index 8a13855a70..dd5d0bf555 100644
--- a/tutorial/tutorial.wmml
+++ b/tutorial/tutorial.wmml
@@ -12196,7 +12196,7 @@ with <i>args</i> as arguments.
 <dt><encaps>DESCRIPTION</encaps><dd>
 This function is exactly equivalent to:
 <example language=pike>
-map_array(index,lambda(mixed x,mixed y) { return x[y]; },data)
+map_array(data, lambda(mixed x,mixed y) { return x[y]; }, index)
 </example>
 Except of course it is a lot shorter and faster.
 That is, it indexes every index in the array data on the value of
-- 
GitLab