Skip to content

Commit b212770

Browse files
committed
``
1 parent d28087b commit b212770

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

clang-tools-extra/docs/clang-tidy/checks/performance/lost-std-move.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ Options
3939

4040
.. option:: StrictMode
4141

42-
A variable X can be referenced by another variable R. In this case the last
43-
variable usage might be not from X, but from R. It is quite difficult to
44-
find in a large function, so if the plugin sees some R references X, then
45-
it will not emit a warning for X not to provoke false positive. If you're
46-
sure that such references don't extend X' lifetime and ready to handle possible
42+
A variable ``X`` can be referenced by another variable ``R``. In this case the last
43+
variable usage might be not from ``X``, but from ``R``. It is quite difficult to
44+
find in a large function, so if the plugin sees some ``R`` references ``X``, then
45+
it will not emit a warning for ``X`` not to provoke false positive. If you're
46+
sure that such references don't extend ``X`` lifetime and ready to handle possible
4747
false positives, then set `StrictMode` to `false`. Defaults to `true`.

0 commit comments

Comments
 (0)