[llvm-commits] [llvm] r72357 - /llvm/trunk/docs/LangRef.html

Nick Lewycky nicholas at mxc.ca
Sat May 23 19:46:06 PDT 2009


Author: nicholas
Date: Sat May 23 21:46:06 2009
New Revision: 72357

URL: http://llvm.org/viewvc/llvm-project?rev=72357&view=rev
Log:
Remove border around table used for layout.

Modified:
    llvm/trunk/docs/LangRef.html

Modified: llvm/trunk/docs/LangRef.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.html?rev=72357&r1=72356&r2=72357&view=diff

==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Sat May 23 21:46:06 2009
@@ -1371,18 +1371,18 @@
 
 <h5>Examples:</h5>
 <table class="layout">
-  <tbody>
-  <tr>
-    <td><tt>i1</tt></td>
-    <td>a single-bit integer.</td>
-  </tr><tr>
-    <td><tt>i32</tt></td>
-    <td>a 32-bit integer.</td>
-  </tr><tr>
-    <td><tt>i1942652</tt></td>
-    <td>a really big integer of over 1 million bits.</td>
+  <tr class="layout">
+    <td class="left"><tt>i1</tt></td>
+    <td class="left">a single-bit integer.</td>
+  </tr>
+  <tr class="layout">
+    <td class="left"><tt>i32</tt></td>
+    <td class="left">a 32-bit integer.</td>
+  </tr>
+  <tr class="layout">
+    <td class="left"><tt>i1942652</tt></td>
+    <td class="left">a really big integer of over 1 million bits.</td>
   </tr>
-  </tbody>
 </table>
 
 <p>Note that the code generator does not yet support large integer types





More information about the llvm-commits mailing list