Skip to content

Commit 9b514e7

Browse files
committed
Fix typo spotted by @5chmidti
1 parent 27c2a79 commit 9b514e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang-tools-extra/docs/clang-tidy/checks/modernize/use-std-print.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ The check doesn't do a bad job, but it's not perfect. In particular:
4242

4343
- At the point that the check runs, the AST contains a single
4444
``StringLiteral`` for the format string where escapes have been expanded.
45-
The check tries to reconstruct escapes sequences, they may not be the
46-
same as they were written (e.g. ``"\x41\x0a"`` will become ``"A\n"`` and
45+
The check tries to reconstruct escape sequences, they may not be the same
46+
as they were written (e.g. ``"\x41\x0a"`` will become ``"A\n"`` and
4747
``"ab" "cd"`` will become ``"abcd"``.)
4848

4949
- It supports field widths, precision, positional arguments, leading zeros,

0 commit comments

Comments
 (0)