Skip to content

Commit

Permalink
[clang-tidy][NFC] Fix documentation for performance-avoid-endl
Browse files Browse the repository at this point in the history
Added missing new line after code block markup and before code.
  • Loading branch information
PiotrZSL committed Apr 22, 2023
1 parent cd89330 commit 1d90376
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Example:
Consider the following code:

.. code-block:: c++

#include <iostream>

int main() {
Expand All @@ -28,6 +29,7 @@ Consider the following code:
Which gets transformed into:

.. code-block:: c++

#include <iostream>

int main() {
Expand All @@ -49,6 +51,7 @@ If you do need to flush the stream buffer, you can use ``std::flush``
explicitly like this:

.. code-block:: c++

#include <iostream>

int main() {
Expand Down

0 comments on commit 1d90376

Please sign in to comment.