diff options
Diffstat (limited to 'clang-tools-extra/clang-tidy/misc/InaccurateEraseCheck.h')
| -rw-r--r-- | clang-tools-extra/clang-tidy/misc/InaccurateEraseCheck.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang-tools-extra/clang-tidy/misc/InaccurateEraseCheck.h b/clang-tools-extra/clang-tidy/misc/InaccurateEraseCheck.h index ecd92a0b0e0..623e1c236eb 100644 --- a/clang-tools-extra/clang-tidy/misc/InaccurateEraseCheck.h +++ b/clang-tools-extra/clang-tidy/misc/InaccurateEraseCheck.h @@ -16,12 +16,12 @@ namespace clang { namespace tidy { namespace misc { -/// \brief Checks for inaccurate use of \c erase() method. +/// Checks for inaccurate use of the `erase()` method. /// -/// Algorithms like \c remove() do not actually remove any element from the +/// Algorithms like `remove()` do not actually remove any element from the /// container but return an iterator to the first redundant element at the end /// of the container. These redundant elements must be removed using the -/// \c erase() method. This check warns when not all of the elements will be +/// `erase()` method. This check warns when not all of the elements will be /// removed due to using an inappropriate overload. class InaccurateEraseCheck : public ClangTidyCheck { public: |

