Skip to content

Commit 7b657c4

Browse files
committed
Fixed Formatting issues
1 parent 3d02ecd commit 7b657c4

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

clang-tools-extra/docs/ReleaseNotes.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ New checks
173173

174174
Replace comparisons between signed and unsigned integers with their safe
175175
C++20 ``std::cmp_*`` alternative, if available.
176-
176+
177177
- New :doc:`portability-template-virtual-member-function
178178
<clang-tidy/checks/portability/template-virtual-member-function>` check.
179179

@@ -184,7 +184,7 @@ New checks
184184
<clang-tidy/checks/readability/use-cpp-style-comments>` check.
185185

186186
Replace C-style comments with C++-style comments.
187-
187+
188188
New check aliases
189189
^^^^^^^^^^^^^^^^^
190190

clang-tools-extra/docs/clang-tidy/checks/readability/use-cpp-style-comments.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,13 @@ Examples:
1414

1515
Input:
1616
.. code-block::c++
17-
17+
1818
/* This is a single-line comment */
1919
int x = 42; /* Inline comment */
2020
2121
/* This is a
2222
multi-line comment */
2323
24-
2524
Output:
2625
.. code-block::c++
2726
@@ -34,6 +33,8 @@ Output:
3433
.. note::
3534

3635
Inline Comments are neither fixed nor warned.
36+
3737
Example:
3838
.. code-block:: c++
39+
3940
int a = /* this is a comment */ 5;

0 commit comments

Comments
 (0)