Skip to content

Commit 824f287

Browse files
Update clang-tools-extra/docs/clang-tidy/checks/bugprone/unintended-char-ostream-output.rst
Co-authored-by: whisperity <[email protected]>
1 parent 9033197 commit 824f287

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang-tools-extra/docs/clang-tidy/checks/bugprone/unintended-char-ostream-output.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Finds unintended character output from ``unsigned char`` and ``signed char`` to
88

99
Normally, when ``unsigned char (uint8_t)`` or ``signed char (int8_t)`` is used, it
1010
is more likely a number than a character. However, when it is passed directly to
11-
``std::ostream``'s ``operator<<``, resulting in character-based output instead
12-
of numeric value. This often contradicts the developer's intent to print
11+
``std::ostream``'s ``operator<<``, the result is the character output instead
12+
of the numeric value. This often contradicts the developer's intent to print
1313
integer values.
1414

1515
.. code-block:: c++

0 commit comments

Comments
 (0)