diff options
author | Mike Pall <mike> | 2011-07-07 08:55:44 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2011-07-07 08:55:44 +0200 |
commit | fe6ded90188c94c138ef183b34dfba3652e87f4b (patch) | |
tree | a58892dbc9b4239b6d710f2ea510fa736e0d07e7 /doc/ext_ffi_tutorial.html | |
parent | 29ac908f74aef5b991cbcd775d8bf8f1307d7e3d (diff) | |
download | luajit-fe6ded90188c94c138ef183b34dfba3652e87f4b.tar.gz luajit-fe6ded90188c94c138ef183b34dfba3652e87f4b.tar.bz2 luajit-fe6ded90188c94c138ef183b34dfba3652e87f4b.zip |
Fix doc link.
Diffstat (limited to 'doc/ext_ffi_tutorial.html')
-rw-r--r-- | doc/ext_ffi_tutorial.html | 2 |
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. | |||
460 | <span class="mark">⑤</span> This associates the metamethods with | 460 | <span class="mark">⑤</span> This associates the metamethods with |
461 | our C type. This only needs to be done once. For convenience, a | 461 | our C type. This only needs to be done once. For convenience, a |
462 | constructor is returned by | 462 | constructor is returned by |
463 | <a href="ffi_ext_api.html#ffi_metatype"><tt>ffi.metatype()</tt></a>. | 463 | <a href="ext_ffi_api.html#ffi_metatype"><tt>ffi.metatype()</tt></a>. |
464 | We're not required to use it, though. The original C type can still | 464 | We're not required to use it, though. The original C type can still |
465 | be used e.g. to create an array of points. The metamethods automatically | 465 | be used e.g. to create an array of points. The metamethods automatically |
466 | apply to any and all uses of this type. | 466 | apply to any and all uses of this type. |