[llvm-branch-commits] [clang] 08642a3 - Fix syntax error in Clang release notes

Aaron Puchert via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Sat Sep 18 07:42:11 PDT 2021


Author: Aaron Puchert
Date: 2021-09-18T16:40:42+02:00
New Revision: 08642a395f235b9186d4479c7a2307f9e8bf0bba

URL: https://github.com/llvm/llvm-project/commit/08642a395f235b9186d4479c7a2307f9e8bf0bba
DIFF: https://github.com/llvm/llvm-project/commit/08642a395f235b9186d4479c7a2307f9e8bf0bba.diff

LOG: Fix syntax error in Clang release notes

There needs to be a blank line after ".. code-block:: <lang>".

Added: 
    

Modified: 
    clang/docs/ReleaseNotes.rst

Removed: 
    


################################################################################
diff  --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst
index eb17ab7be2b45..10addbd1abba1 100644
--- a/clang/docs/ReleaseNotes.rst
+++ b/clang/docs/ReleaseNotes.rst
@@ -245,6 +245,7 @@ OpenMP Support in Clang
   other OpenMP loop associated constructs as in
 
   .. code-block:: c
+
     #pragma omp parallel for
     #pragma omp unroll partial(4)
     for (int i = 0; i < n; ++i)
@@ -253,6 +254,7 @@ OpenMP Support in Clang
   user-defined tile size.
 
   .. code-block:: c
+
     #pragma omp tile sizes(8,8)
     for (int i = 0; i < m; ++i)
       for (int j = 0; j < n; ++j)


        


More information about the llvm-branch-commits mailing list