Remove bad HTML tags. Add missing :.
llvm-svn: 158726
diff --git a/llvm/docs/Projects.rst b/llvm/docs/Projects.rst
index 5935aeb..e5280fa 100644
--- a/llvm/docs/Projects.rst
+++ b/llvm/docs/Projects.rst
@@ -273,14 +273,14 @@
``LIBS``
- To link dynamic libraries, add <tt>-l<library base name></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