From: Mike Pall Date: Fri, 13 Jun 2014 09:16:39 +0000 (+0200) Subject: Typo. X-Git-Tag: v2.0.4~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb5dfbb034a75e8a38ba918deb09db07b5989b73;p=thirdparty%2FLuaJIT.git Typo. --- diff --git a/doc/ext_ffi_tutorial.html b/doc/ext_ffi_tutorial.html index 01fb8992..8e4eaf72 100644 --- a/doc/ext_ffi_tutorial.html +++ b/doc/ext_ffi_tutorial.html @@ -564,7 +564,7 @@ Thus it's not helpful and actually counter-productive to cache individual C functions like this:

-local funca, funcb = ffi.C.funcb, ffi.C.funcb -- Not helpful!
+local funca, funcb = ffi.C.funca, ffi.C.funcb -- Not helpful!
 local function foo(x, n)
   for i=1,n do funcb(funca(x, i), 1) end
 end