r206661 - Fix sphinx-build warnings in clang docs.
Reid Kleckner
reid at kleckner.net
Fri Apr 18 14:55:49 PDT 2014
Author: rnk
Date: Fri Apr 18 16:55:49 2014
New Revision: 206661
URL: http://llvm.org/viewvc/llvm-project?rev=206661&view=rev
Log:
Fix sphinx-build warnings in clang docs.
Modified:
cfe/trunk/docs/ClangFormatStyleOptions.rst
cfe/trunk/docs/Modules.rst
Modified: cfe/trunk/docs/ClangFormatStyleOptions.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/ClangFormatStyleOptions.rst?rev=206661&r1=206660&r2=206661&view=diff
==============================================================================
--- cfe/trunk/docs/ClangFormatStyleOptions.rst (original)
+++ cfe/trunk/docs/ClangFormatStyleOptions.rst Fri Apr 18 16:55:49 2014
@@ -338,7 +338,7 @@ the configuration (without a prefix: ``A
**SpacesBeforeTrailingComments** (``unsigned``)
The number of spaces before trailing line comments (//-comments).
- This does not affect trailing block comments (/**/-comments) as those
+ This does not affect trailing block comments (/\*\*/-comments) as those
commonly have different usage patterns and a number of special cases.
**SpacesInAngles** (``bool``)
Modified: cfe/trunk/docs/Modules.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/Modules.rst?rev=206661&r1=206660&r2=206661&view=diff
==============================================================================
--- cfe/trunk/docs/Modules.rst (original)
+++ cfe/trunk/docs/Modules.rst Fri Apr 18 16:55:49 2014
@@ -761,7 +761,7 @@ express this with a single module map fi
because the header ``Foo_Private.h`` won't always be available. The
module map file could be customized based on whether
-``Foo_Private.h``is available or not, but doing so requires custom
+``Foo_Private.h`` is available or not, but doing so requires custom
build machinery.
Private module map files, which are named ``module.private.modulemap``
@@ -770,7 +770,7 @@ augment the primary module map file with
example, we would split the module map file above into two module map
files:
-.. parsed-literal::
+.. code-block:: c
/* module.modulemap */
module Foo {
More information about the cfe-commits
mailing list