summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/simplifybool.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'compilerplugins/clang/simplifybool.cxx')
-rw-r--r--compilerplugins/clang/simplifybool.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/simplifybool.cxx b/compilerplugins/clang/simplifybool.cxx
index 9f82660dd29f..d70751fb54eb 100644
--- a/compilerplugins/clang/simplifybool.cxx
+++ b/compilerplugins/clang/simplifybool.cxx
@@ -33,7 +33,7 @@ enum class Value { Unknown, False, True };
Value getValue(Expr const * expr) {
expr = ignoreParenImpCastAndComma(expr);
if (expr->getType()->isBooleanType()) {
- // Instead going via Expr::isCXX11ConstantExpr would turn up excatly one
+ // Instead going via Expr::isCXX11ConstantExpr would turn up exactly one
// additional place in svx/source/dialog/framelinkarray.cxx
//
// const bool DIAG_DBL_CLIP_DEFAULT = false;