diff options
author | Mike Pall <mike> | 2012-05-09 17:22:11 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2012-05-09 17:22:11 +0200 |
commit | 5cb4ad2b22b0d40649a6ca481f3e84c89a9f602c (patch) | |
tree | 3465b1924828fe814371e7dc76e159db372fc8aa | |
parent | 6e5c872eb795279f0fde845937eb120d8c128add (diff) | |
download | luajit-5cb4ad2b22b0d40649a6ca481f3e84c89a9f602c.tar.gz luajit-5cb4ad2b22b0d40649a6ca481f3e84c89a9f602c.tar.bz2 luajit-5cb4ad2b22b0d40649a6ca481f3e84c89a9f602c.zip |
Fix typo.
-rw-r--r-- | doc/ext_ffi.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ext_ffi.html b/doc/ext_ffi.html index 9b1748cc..e3f0dbc8 100644 --- a/doc/ext_ffi.html +++ b/doc/ext_ffi.html | |||
@@ -125,7 +125,7 @@ C function — Yes, it's that simple! | |||
125 | Actually, what goes on behind the scenes is far from simple: <span | 125 | Actually, what goes on behind the scenes is far from simple: <span |
126 | style="color:#4040c0;">③</span> makes use of the standard | 126 | style="color:#4040c0;">③</span> makes use of the standard |
127 | C library namespace <tt>ffi.C</tt>. Indexing this namespace with | 127 | C library namespace <tt>ffi.C</tt>. Indexing this namespace with |
128 | a symbol name (<tt>"printf"</tt>) automatically binds it to the the | 128 | a symbol name (<tt>"printf"</tt>) automatically binds it to the |
129 | standard C library. The result is a special kind of object which, | 129 | standard C library. The result is a special kind of object which, |
130 | when called, runs the <tt>printf</tt> function. The arguments passed | 130 | when called, runs the <tt>printf</tt> function. The arguments passed |
131 | to this function are automatically converted from Lua objects to the | 131 | to this function are automatically converted from Lua objects to the |