diff options
Diffstat (limited to 'clang-tools-extra/docs/clang-tidy')
-rw-r--r-- | clang-tools-extra/docs/clang-tidy/checks/misc-string-integer-assignment.rst | 2 | ||||
-rw-r--r-- | clang-tools-extra/docs/clang-tidy/checks/readability-implicit-bool-cast.rst | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/clang-tools-extra/docs/clang-tidy/checks/misc-string-integer-assignment.rst b/clang-tools-extra/docs/clang-tidy/checks/misc-string-integer-assignment.rst index faafcd99158..285702eae5b 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/misc-string-integer-assignment.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/misc-string-integer-assignment.rst @@ -11,7 +11,7 @@ following assignment operator of ``std::basic_string<CharT>``: basic_string& operator=( CharT ch ); -Numeric types can be implicity casted to character types. +Numeric types can be implicitly casted to character types. .. code:: c++ diff --git a/clang-tools-extra/docs/clang-tidy/checks/readability-implicit-bool-cast.rst b/clang-tools-extra/docs/clang-tidy/checks/readability-implicit-bool-cast.rst index 76c82b41ec4..bdd4d7de479 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/readability-implicit-bool-cast.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/readability-implicit-bool-cast.rst @@ -26,11 +26,11 @@ bool cast: This code is the result of unsuccessful refactoring, where type of ``m_foo`` changed from ``bool`` to ``int``. The programmer forgot to change all -occurences of ``bool``, and the remaining code is no longer correct, yet it +occurrences of ``bool``, and the remaining code is no longer correct, yet it still compiles without any visible warnings. In addition to issuing warnings, FixIt hints are provided to help solve -the reported issues. This can be used for improving readabilty of code, for example: +the reported issues. This can be used for improving readability of code, for example: .. code:: c++ @@ -95,5 +95,5 @@ Some additional accommodations are made for pre-C++11 dialects: - ``false`` literal cast to pointer is detected, - instead of ``nullptr`` literal, ``0`` is proposed as replacement. -Occurences of implicit casts inside macros and template instantiations are +Occurrences of implicit casts inside macros and template instantiations are deliberately ignored, as it is not clear how to deal with such cases. |