]> granicus.if.org Git - clang/commitdiff
clang-format: Fix Sphinx build error.
authorDaniel Jasper <djasper@google.com>
Thu, 15 May 2014 13:55:19 +0000 (13:55 +0000)
committerDaniel Jasper <djasper@google.com>
Thu, 15 May 2014 13:55:19 +0000 (13:55 +0000)
Patch by Adam Strzelecki, thank you!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@208882 91177308-0d34-0410-b5e6-96231b3b80d8

docs/ClangFormatStyleOptions.rst
include/clang/Format/Format.h

index b2157dd832050a0d4fcdd6db2e9412f5de8f3394..0483bd715eb2e53318905bfeb3302db279f4a04b 100644 (file)
@@ -341,9 +341,10 @@ the configuration (without a prefix: ``Auto``).
   If ``true``, spaces may be inserted into '()'.
 
 **SpacesBeforeTrailingComments** (``unsigned``)
-  The number of spaces before trailing line comments (//-comments).
+  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``)
index 4356ff0b03938bec9d65160ba833dfce5a90bd15..56b796cf5fde2a79a4e982f47adb2c91bea3c83e 100644 (file)
@@ -120,9 +120,10 @@ struct FormatStyle {
   /// \brief The indentation used for namespaces.
   NamespaceIndentationKind NamespaceIndentation;
 
-  /// \brief The number of spaces before trailing line comments (//-comments).
+  /// \brief The number of spaces before trailing line comments
+  /// (\c // - comments).
   ///
-  /// This does not affect trailing block comments (/**/-comments) as those
+  /// This does not affect trailing block comments (\c /**/ - comments) as those
   /// commonly have different usage patterns and a number of special cases.
   unsigned SpacesBeforeTrailingComments;