[llvm-branch-commits] [clang] 33a63a3 - [clang-format] [docs] Fix RST indentation.

Marek Kurdej via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Mon Jan 25 02:05:46 PST 2021


Author: Marek Kurdej
Date: 2021-01-25T11:00:46+01:00
New Revision: 33a63a36d3cb0a59ef80054a02babe7a28a9842a

URL: https://github.com/llvm/llvm-project/commit/33a63a36d3cb0a59ef80054a02babe7a28a9842a
DIFF: https://github.com/llvm/llvm-project/commit/33a63a36d3cb0a59ef80054a02babe7a28a9842a.diff

LOG: [clang-format] [docs] Fix RST indentation.

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/clang/docs/ClangFormatStyleOptions.rst b/clang/docs/ClangFormatStyleOptions.rst
index 6877cac28278..3141dd5510fc 100644
--- a/clang/docs/ClangFormatStyleOptions.rst
+++ b/clang/docs/ClangFormatStyleOptions.rst
@@ -327,7 +327,7 @@ the configuration (without a prefix: ``Auto``).
        int ee : 3;
 
   * ``ACS_AcrossEmptyLinesAndComments``
-  (in configuration: ``AcrossEmptyLinesAndComments``)
+    (in configuration: ``AcrossEmptyLinesAndComments``)
 
      Same as ACS_Consecutive, but also spans over lines only containing
      comments and empty lines, e.g.
@@ -401,7 +401,7 @@ the configuration (without a prefix: ``Auto``).
        bool c = false;
 
   * ``ACS_AcrossEmptyLinesAndComments``
-  (in configuration: ``AcrossEmptyLinesAndComments``)
+    (in configuration: ``AcrossEmptyLinesAndComments``)
 
      Same as ACS_Consecutive, but also spans over lines only containing
      comments and empty lines, e.g.
@@ -476,7 +476,7 @@ the configuration (without a prefix: ``Auto``).
        #define bar(y, z) (y + z)
 
   * ``ACS_AcrossEmptyLinesAndComments``
-  (in configuration: ``AcrossEmptyLinesAndComments``)
+    (in configuration: ``AcrossEmptyLinesAndComments``)
 
      Same as ACS_Consecutive, but also spans over lines only containing
      comments and empty lines, e.g.

diff  --git a/clang/include/clang/Format/Format.h b/clang/include/clang/Format/Format.h
index a95689097b00..fcc38e25542f 100644
--- a/clang/include/clang/Format/Format.h
+++ b/clang/include/clang/Format/Format.h
@@ -153,7 +153,7 @@ struct FormatStyle {
   ///    \endcode
   ///
   /// * ``ACS_AcrossEmptyLinesAndComments``
-  /// (in configuration: ``AcrossEmptyLinesAndComments``)
+  ///   (in configuration: ``AcrossEmptyLinesAndComments``)
   ///
   ///    Same as ACS_Consecutive, but also spans over lines only containing
   ///    comments and empty lines, e.g.
@@ -290,7 +290,7 @@ struct FormatStyle {
   ///    \endcode
   ///
   /// * ``ACS_AcrossEmptyLinesAndComments``
-  /// (in configuration: ``AcrossEmptyLinesAndComments``)
+  ///   (in configuration: ``AcrossEmptyLinesAndComments``)
   ///
   ///    Same as ACS_Consecutive, but also spans over lines only containing
   ///    comments and empty lines, e.g.
@@ -359,7 +359,7 @@ struct FormatStyle {
   ///    \endcode
   ///
   /// * ``ACS_AcrossEmptyLinesAndComments``
-  /// (in configuration: ``AcrossEmptyLinesAndComments``)
+  ///   (in configuration: ``AcrossEmptyLinesAndComments``)
   ///
   ///    Same as ACS_Consecutive, but also spans over lines only containing
   ///    comments and empty lines, e.g.


        


More information about the llvm-branch-commits mailing list