diff options
Diffstat (limited to 'clang-tools-extra/clang-tidy/misc/StaticAssertCheck.h')
| -rw-r--r-- | clang-tools-extra/clang-tidy/misc/StaticAssertCheck.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang-tools-extra/clang-tidy/misc/StaticAssertCheck.h b/clang-tools-extra/clang-tidy/misc/StaticAssertCheck.h index 05b92fcf569..b3b1cb5fad9 100644 --- a/clang-tools-extra/clang-tidy/misc/StaticAssertCheck.h +++ b/clang-tools-extra/clang-tidy/misc/StaticAssertCheck.h @@ -17,10 +17,10 @@ namespace clang { namespace tidy { -/// \brief Replaces \c assert() with \c static_assert() if the condition is -/// evaluatable at compile time. +/// Replaces `assert()` with `static_assert()` if the condition is evaluatable +/// at compile time. /// -/// The condition of \c static_assert() is evaluated at compile time which is +/// The condition of `static_assert()` is evaluated at compile time which is /// safer and more efficient. class StaticAssertCheck : public ClangTidyCheck { public: |

