summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/store
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-05-04 08:50:33 +0000
committerJulien Nabet <serval2412@yahoo.fr>2019-05-05 10:14:07 +0200
commit65a60e13bb17d2653ff867f095c1590cc1a41c49 (patch)
treeb22295ff66b487acd3b79f02c1cc7804900844b5 /compilerplugins/clang/store
parent5767c14e5f2604dbdf13e070a01a7789071e521a (diff)
Fix typo
Change-Id: I87fa75d2aab64031426ce0560344908bd81d413c Reviewed-on: https://gerrit.libreoffice.org/71816 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'compilerplugins/clang/store')
-rw-r--r--compilerplugins/clang/store/cascadingassignop.cxx2
-rw-r--r--compilerplugins/clang/store/cascadingcondop.cxx2
2 files changed, 2 insertions, 2 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