summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--compilerplugins/clang/store/cascadingassignop.cxx2
-rw-r--r--compilerplugins/clang/store/cascadingcondop.cxx2
-rw-r--r--sw/source/filter/ww8/writerhelper.hxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/compilerplugins/clang/store/cascadingassignop.cxx b/compilerplugins/clang/store/cascadingassignop.cxx
index 660689b9c77b..a1098ee0642c 100644
--- a/compilerplugins/clang/store/cascadingassignop.cxx
+++ b/compilerplugins/clang/store/cascadingassignop.cxx
@@ -15,7 +15,7 @@
This is a compile check.
It checks for complex statements with conditional operators in conditional
-operators, which are errorprone, e.g.
+operators, which are error prone, e.g.
Thing foo = IsBar() ? ( IsBaz() ? b1 : b2 ) : b3;
However, it finds 556 cases in sw/source alone, thus likely needs some more
diff --git a/compilerplugins/clang/store/cascadingcondop.cxx b/compilerplugins/clang/store/cascadingcondop.cxx
index 8164e4614f6b..f2687e76922d 100644
--- a/compilerplugins/clang/store/cascadingcondop.cxx
+++ b/compilerplugins/clang/store/cascadingcondop.cxx
@@ -15,7 +15,7 @@
This is a compile check.
It checks for complex statements with conditional operators in conditional
-operators, which are errorprone, e.g.
+operators, which are error prone, e.g.
Thing foo = IsBar() ? ( IsBaz() ? b1 : b2 ) : b3;
However, it finds 556 cases in sw/source alone, thus likely needs some more
diff --git a/sw/source/filter/ww8/writerhelper.hxx b/sw/source/filter/ww8/writerhelper.hxx
index 9d8d6fbcdb17..80430bcca9d7 100644
--- a/sw/source/filter/ww8/writerhelper.hxx
+++ b/sw/source/filter/ww8/writerhelper.hxx
@@ -209,7 +209,7 @@ namespace sw
/** Provide a dynamic_cast style cast for SfxPoolItems
A SfxPoolItem generally need to be cast back to its original type
- to be useful, which is both tedious and errorprone. So item_cast is
+ to be useful, which is both tedious and error prone. So item_cast is
a helper template to aid the process and test if the cast is
correct.