summaryrefslogtreecommitdiff
path: root/compilerplugins
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2016-02-02 19:47:20 +0100
committerAshod Nakashian <ashod.nakashian@collabora.co.uk>2016-07-20 01:25:57 -0400
commit32da3e000cec3a2045f1a33b7549d64c673a67da (patch)
tree3da3fbce823604bfb9ef2b772764385071aa7f19 /compilerplugins
parent4e779bffa2ae86ba2bf7d537b0f9b2c1c0e59b64 (diff)
Fix typos
Change-Id: Ice72f8d9971e15dd6ef365e64cd567b8581a92d3 Reviewed-on: https://gerrit.libreoffice.org/21797 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Ashod Nakashian <ashnakash@gmail.com> (cherry picked from commit 534b2a4b58ba765dbc256d6297e33453524915e2)
Diffstat (limited to 'compilerplugins')
-rw-r--r--compilerplugins/clang/badvectorinit.cxx2
-rw-r--r--compilerplugins/clang/getimplementationname.cxx6
2 files changed, 4 insertions, 4 deletions
diff --git a/compilerplugins/clang/badvectorinit.cxx b/compilerplugins/clang/badvectorinit.cxx
index 7f67ffc3a9b4..b8c2dfe2d985 100644
--- a/compilerplugins/clang/badvectorinit.cxx
+++ b/compilerplugins/clang/badvectorinit.cxx
@@ -25,7 +25,7 @@ Killing the 1-argument vector fill constructor:
in general is probably a Good Thing(tm). It can just be too misleading.
Requiring at least the explicit two-value fill constructor for the rare cases where
-someone wants a filled vector isnt too much to ask and less prone to
+someone wants a filled vector isn't too much to ask and less prone to
misunderstandings:
std::vector< basebmp::Color > aDevPal(2, basebmp::Color(0,0,0));
diff --git a/compilerplugins/clang/getimplementationname.cxx b/compilerplugins/clang/getimplementationname.cxx
index ac011eeeb73c..c237881abdb7 100644
--- a/compilerplugins/clang/getimplementationname.cxx
+++ b/compilerplugins/clang/getimplementationname.cxx
@@ -8,7 +8,7 @@
*/
// only compile this on unixy system
-// as we dont want to bother with x-platform system()/mkdir()
+// as we don't want to bother with x-platform system()/mkdir()
#if defined(__unix__)
// only compile this on clang 3.7 or higher, which is known to work
// there were problems on clang 3.5 at least
@@ -282,7 +282,7 @@ std::string GetImplementationName::initOutdir() {
return result;
}
report(
- clang::DiagnosticsEngine::Error, "WORKDIR unset, dont know where to write service implementation info.");
+ clang::DiagnosticsEngine::Error, "WORKDIR unset, don't know where to write service implementation info.");
return std::string();
}
}
@@ -292,7 +292,7 @@ std::string GetImplementationName::initSrcdir() {
char* pSrcdir = getenv("SRCDIR");
if(!pSrcdir) {
report(
- clang::DiagnosticsEngine::Error, "SRCDIR unset, dont know where the source base is.");
+ clang::DiagnosticsEngine::Error, "SRCDIR unset, don't know where the source base is.");
}
return std::string(pSrcdir);
}