From fe6ded90188c94c138ef183b34dfba3652e87f4b Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Thu, 7 Jul 2011 08:55:44 +0200 Subject: [PATCH] Fix doc link. --- doc/ext_ffi_tutorial.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ext_ffi_tutorial.html b/doc/ext_ffi_tutorial.html index d5b04bc6..9349aea4 100644 --- a/doc/ext_ffi_tutorial.html +++ b/doc/ext_ffi_tutorial.html @@ -460,7 +460,7 @@ define __index and __newindex functions instead. This associates the metamethods with our C type. This only needs to be done once. For convenience, a constructor is returned by -ffi.metatype(). +ffi.metatype(). We're not required to use it, though. The original C type can still be used e.g. to create an array of points. The metamethods automatically apply to any and all uses of this type.