[Libreoffice-commits] core.git: compilerplugins/clang sw/source
Andrea Gelmini (via logerrit)
logerrit at kemper.freedesktop.org
Sun May 5 08:14:51 UTC 2019
compilerplugins/clang/store/cascadingassignop.cxx | 2 +-
compilerplugins/clang/store/cascadingcondop.cxx | 2 +-
sw/source/filter/ww8/writerhelper.hxx | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 65a60e13bb17d2653ff867f095c1590cc1a41c49
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Sat May 4 08:50:33 2019 +0000
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Sun May 5 10:14:07 2019 +0200
Fix typo
Change-Id: I87fa75d2aab64031426ce0560344908bd81d413c
Reviewed-on: https://gerrit.libreoffice.org/71816
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
Tested-by: Julien Nabet <serval2412 at yahoo.fr>
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.
More information about the Libreoffice-commits
mailing list