diff --git a/clang-tools-extra/docs/clang-tidy/index.rst b/clang-tools-extra/docs/clang-tidy/index.rst --- a/clang-tools-extra/docs/clang-tidy/index.rst +++ b/clang-tools-extra/docs/clang-tidy/index.rst @@ -308,13 +308,13 @@ adhere to a coding standard, or is otherwise problematic in some way. However, if the code is known to be correct, it may be useful to silence the warning. Some clang-tidy checks provide a check-specific way to silence the diagnostics, -e.g. `bugprone-use-after-move `_ can be +e.g. `bugprone-use-after-move `_ can be silenced by re-initializing the variable after it has been moved out, `bugprone-string-integer-assignment -`_ can be suppressed by +`_ can be suppressed by explicitly casting the integer to ``char``, `readability-implicit-bool-conversion -`_ can also be suppressed by +`_ can also be suppressed by using explicit casts, etc. If a specific suppression mechanism is not available for a certain warning, or