Remove bad HTML tags. Add missing :.
authorBill Wendling <isanbard@gmail.com>
Tue, 19 Jun 2012 17:43:57 +0000 (17:43 +0000)
committerBill Wendling <isanbard@gmail.com>
Tue, 19 Jun 2012 17:43:57 +0000 (17:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158726 91177308-0d34-0410-b5e6-96231b3b80d8

docs/Projects.rst

index 5935aeb9377a5e3a476bcc33d41852631130016e..e5280fa580e291f13445c1a367ed9c4802a46940 100644 (file)
@@ -273,14 +273,14 @@ Variables for Building Programs
 
 ``LIBS``
 
-    To link dynamic libraries, add <tt>-l&lt;library base name&gt;</tt> to the
-    ``LIBS`` variable.  The LLVM build system will look in the same places for
-    dynamic libraries as it does for static libraries.
+    To link dynamic libraries, add ``-l<library base name>`` to the ``LIBS``
+    variable.  The LLVM build system will look in the same places for dynamic
+    libraries as it does for static libraries.
 
     For example, to link ``libsample.so``, you would have the following line in
     your ``Makefile``:
 
-.. code-block: Makefile
+.. code-block:: Makefile
 
   LIBS += -lsample