summaryrefslogtreecommitdiff
path: root/compilerplugins
diff options
context:
space:
mode:
Diffstat (limited to 'compilerplugins')
-rw-r--r--compilerplugins/clang/store/findoncontainer.cxx2
-rw-r--r--compilerplugins/clang/store/rtlconstasciimacro.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/compilerplugins/clang/store/findoncontainer.cxx b/compilerplugins/clang/store/findoncontainer.cxx
index f7db49d0f5b4..99efb9caab56 100644
--- a/compilerplugins/clang/store/findoncontainer.cxx
+++ b/compilerplugins/clang/store/findoncontainer.cxx
@@ -15,7 +15,7 @@
// Look for places calling std::find on a standard container where it should be using the container find method, which
// is more efficient.
//
-// This lives in /store because the implementation is a hack and is highly dependant on the inwards
+// This lives in /store because the implementation is a hack and is highly dependent on the inwards
// of the libc++ library on the machine it runs on.
//
diff --git a/compilerplugins/clang/store/rtlconstasciimacro.cxx b/compilerplugins/clang/store/rtlconstasciimacro.cxx
index 482c9ade4201..d52a147db98f 100644
--- a/compilerplugins/clang/store/rtlconstasciimacro.cxx
+++ b/compilerplugins/clang/store/rtlconstasciimacro.cxx
@@ -107,7 +107,7 @@ bool RtlConstAsciiMacro::VisitCXXConstructExpr( CXXConstructExpr* expr )
searchingForString = false;
if( !suitableString )
return true;
- // Seach for '(' (don't just remove a given length to handle possible whitespace).
+ // Search for '(' (don't just remove a given length to handle possible whitespace).
const char* text = compiler.getSourceManager().getCharacterData( start );
const char* pos = text;
while( *pos != '(' )