diff options
author | Mike Pall <mike> | 2011-02-10 03:10:38 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2011-02-10 03:10:38 +0100 |
commit | a7ab6b2dc920e76d0cebd577e77bf3a043e3867d (patch) | |
tree | c3bc1785c0b958ef9fb83a6c977f84ca626a6c97 | |
parent | 24c314e8fcfb3d12ea05c1f9bf7add40d24ae0cd (diff) | |
download | luajit-a7ab6b2dc920e76d0cebd577e77bf3a043e3867d.tar.gz luajit-a7ab6b2dc920e76d0cebd577e77bf3a043e3867d.tar.bz2 luajit-a7ab6b2dc920e76d0cebd577e77bf3a043e3867d.zip |
Fix various HTML errors in the docs.
-rw-r--r-- | doc/changes.html | 2 | ||||
-rw-r--r-- | doc/ext_ffi.html | 2 | ||||
-rw-r--r-- | doc/extensions.html | 4 | ||||
-rw-r--r-- | doc/install.html | 2 | ||||
-rw-r--r-- | doc/luajit.html | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/doc/changes.html b/doc/changes.html index c79e00c9..2107193a 100644 --- a/doc/changes.html +++ b/doc/changes.html | |||
@@ -121,7 +121,7 @@ to see whether newer versions are available. | |||
121 | 121 | ||
122 | <h2 id="LuaJIT-2.0.0-beta3">LuaJIT 2.0.0-beta3 — 2010-03-07</h2> | 122 | <h2 id="LuaJIT-2.0.0-beta3">LuaJIT 2.0.0-beta3 — 2010-03-07</h2> |
123 | <ul> | 123 | <ul> |
124 | <li>LuaJIT x64 port:</li> | 124 | <li>LuaJIT x64 port: |
125 | <ul> | 125 | <ul> |
126 | <li>Port integrated memory allocator to Linux/x64, Windows/x64 and OSX/x64.</li> | 126 | <li>Port integrated memory allocator to Linux/x64, Windows/x64 and OSX/x64.</li> |
127 | <li>Port interpreter and JIT compiler to x64.</li> | 127 | <li>Port interpreter and JIT compiler to x64.</li> |
diff --git a/doc/ext_ffi.html b/doc/ext_ffi.html index f496b51b..50a44052 100644 --- a/doc/ext_ffi.html +++ b/doc/ext_ffi.html | |||
@@ -138,7 +138,7 @@ the proper path, add Lua code that loads the module aaaand ... finally | |||
138 | call the binding function. Phew! | 138 | call the binding function. Phew! |
139 | </p> | 139 | </p> |
140 | 140 | ||
141 | <h2 id="call">Motivating Example: Using C Data Structures</h2> | 141 | <h2 id="cdata">Motivating Example: Using C Data Structures</h2> |
142 | <p> | 142 | <p> |
143 | The FFI library allows you to create and access C data | 143 | The FFI library allows you to create and access C data |
144 | structures. Of course the main use for this is for interfacing with | 144 | structures. Of course the main use for this is for interfacing with |
diff --git a/doc/extensions.html b/doc/extensions.html index b9a055c5..8385727b 100644 --- a/doc/extensions.html +++ b/doc/extensions.html | |||
@@ -232,7 +232,7 @@ the toolchain used to compile LuaJIT: | |||
232 | <tr class="odd separate"> | 232 | <tr class="odd separate"> |
233 | <td class="excplatform">POSIX/x64, DWARF2 unwinding</td> | 233 | <td class="excplatform">POSIX/x64, DWARF2 unwinding</td> |
234 | <td class="exccompiler">GCC 4.3+</td> | 234 | <td class="exccompiler">GCC 4.3+</td> |
235 | <td class="excinterop"><b style="color: #00a000;">Full</td> | 235 | <td class="excinterop"><b style="color: #00a000;">Full</b></td> |
236 | </tr> | 236 | </tr> |
237 | <tr class="even"> | 237 | <tr class="even"> |
238 | <td class="excplatform">Other platforms, DWARF2 unwinding</td> | 238 | <td class="excplatform">Other platforms, DWARF2 unwinding</td> |
@@ -242,7 +242,7 @@ the toolchain used to compile LuaJIT: | |||
242 | <tr class="odd"> | 242 | <tr class="odd"> |
243 | <td class="excplatform">Windows/x64</td> | 243 | <td class="excplatform">Windows/x64</td> |
244 | <td class="exccompiler">MSVC or WinSDK</td> | 244 | <td class="exccompiler">MSVC or WinSDK</td> |
245 | <td class="excinterop"><b style="color: #00a000;">Full</td> | 245 | <td class="excinterop"><b style="color: #00a000;">Full</b></td> |
246 | </tr> | 246 | </tr> |
247 | <tr class="even"> | 247 | <tr class="even"> |
248 | <td class="excplatform">Windows/x86</td> | 248 | <td class="excplatform">Windows/x86</td> |
diff --git a/doc/install.html b/doc/install.html index 73755619..55de1bd8 100644 --- a/doc/install.html +++ b/doc/install.html | |||
@@ -392,7 +392,7 @@ See: <tt>man rebase</tt> | |||
392 | for embedding Lua or LuaJIT into your application.</li> | 392 | for embedding Lua or LuaJIT into your application.</li> |
393 | <li>Make sure you use <tt>luaL_newstate</tt>. Avoid using | 393 | <li>Make sure you use <tt>luaL_newstate</tt>. Avoid using |
394 | <tt>lua_newstate</tt>, since this uses the (slower) default memory | 394 | <tt>lua_newstate</tt>, since this uses the (slower) default memory |
395 | allocator from your system (no support for this on x64).</tt></li> | 395 | allocator from your system (no support for this on x64).</li> |
396 | <li>Make sure you use <tt>luaL_openlibs</tt> and not the old Lua 5.0 style | 396 | <li>Make sure you use <tt>luaL_openlibs</tt> and not the old Lua 5.0 style |
397 | of calling <tt>luaopen_base</tt> etc. directly.</li> | 397 | of calling <tt>luaopen_base</tt> etc. directly.</li> |
398 | <li>To change or extend the list of standard libraries to load, copy | 398 | <li>To change or extend the list of standard libraries to load, copy |
diff --git a/doc/luajit.html b/doc/luajit.html index aea5c657..131e4396 100644 --- a/doc/luajit.html +++ b/doc/luajit.html | |||
@@ -118,7 +118,7 @@ language features. | |||
118 | <p> | 118 | <p> |
119 | It's destined to break into the <a href="http://luajit.org/performance.html"><span class="ext">»</span> performance</a> | 119 | It's destined to break into the <a href="http://luajit.org/performance.html"><span class="ext">»</span> performance</a> |
120 | range traditionally reserved for offline, static language compilers. | 120 | range traditionally reserved for offline, static language compilers. |
121 | Have look at these <a href="http://shootout.alioth.debian.org/u32/benchmark.php?test=all&lang=all&d=data&calc=calculate&gpp=on&java=on&luajit=on&v8=on&lua=on&tracemonkey=on&box=1"><span class="ext">»</span> cross-language benchmarks</a> | 121 | Have look at these <a href="http://shootout.alioth.debian.org/u32/benchmark.php?test=all&lang=all&d=data&calc=calculate&gpp=on&java=on&luajit=on&v8=on&lua=on&tracemonkey=on&box=1"><span class="ext">»</span> cross-language benchmarks</a> |
122 | to see how it ranks against the competition. | 122 | to see how it ranks against the competition. |
123 | </p> | 123 | </p> |
124 | 124 | ||