summaryrefslogtreecommitdiff
path: root/doc/ext_ffi_tutorial.html
diff options
context:
space:
mode:
authorMike Pall <mike>2011-07-07 08:55:44 +0200
committerMike Pall <mike>2011-07-07 08:55:44 +0200
commitfe6ded90188c94c138ef183b34dfba3652e87f4b (patch)
treea58892dbc9b4239b6d710f2ea510fa736e0d07e7 /doc/ext_ffi_tutorial.html
parent29ac908f74aef5b991cbcd775d8bf8f1307d7e3d (diff)
downloadluajit2-fe6ded90188c94c138ef183b34dfba3652e87f4b.tar.gz
Fix doc link.
Diffstat (limited to 'doc/ext_ffi_tutorial.html')
-rw-r--r--doc/ext_ffi_tutorial.html2
1 files changed, 1 insertions, 1 deletions
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 <tt>__index</tt> and <tt>__newindex</tt> functions instead.
<span class="mark">&#9316;</span> This associates the metamethods with
our C&nbsp;type. This only needs to be done once. For convenience, a
constructor is returned by
-<a href="ffi_ext_api.html#ffi_metatype"><tt>ffi.metatype()</tt></a>.
+<a href="ext_ffi_api.html#ffi_metatype"><tt>ffi.metatype()</tt></a>.
We're not required to use it, though. The original C&nbsp;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.