Move coding standards reference from development_process.rst to programming.rst.
authorBill Wendling <isanbard@gmail.com>
Wed, 20 Jun 2012 11:56:24 +0000 (11:56 +0000)
committerBill Wendling <isanbard@gmail.com>
Wed, 20 Jun 2012 11:56:24 +0000 (11:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158818 91177308-0d34-0410-b5e6-96231b3b80d8

docs/development_process.rst
docs/programming.rst

index 5053ca891a53df10ff15e5a6d14c91e6b36420aa..4fc20b34129db499509f1b624a3a490ad6fb280e 100644 (file)
@@ -6,7 +6,6 @@ Development Process Documentation
 .. toctree::
    :hidden:
 
-   CodingStandards
    MakefileGuide
    Projects
 
@@ -17,12 +16,6 @@ Development Process Documentation
   tree) allow the project code to be located outside (or inside) the ``llvm/``
   tree, while using LLVM header files and libraries.
 
-* :ref:`coding_standards`
-
-  Describes a few coding standards that are used in the LLVM source tree. All
-  code submissions must follow the coding standards before being allowed into
-  the source tree.
-
 * `LLVMBuild Documentation <LLVMBuild.html>`_
 
   Describes the LLVMBuild organization and files used by LLVM to specify
index a23402276dd8e05a93e725769517b528532ed78f..add923f899539ac92d5515633d72931cb3586f5e 100644 (file)
@@ -3,6 +3,11 @@
 Programming Documentation
 =========================
 
+.. toctree::
+   :hidden:
+
+   CodingStandards
+
 * `LLVM Language Reference Manual <LangRef.html>`_
 
   Defines the LLVM intermediate representation and the assembly form of the
@@ -17,7 +22,7 @@ Programming Documentation
 
   Provides information on using the command line parsing library.
 
-* `LLVM Coding standards <CodingStandards.html>`_
+* :ref:`coding_standards`
 
   Details the LLVM coding standards and provides useful information on writing
   efficient C++ code.