]> granicus.if.org Git - clang/commitdiff
Fix some minor typos
authorSylvestre Ledru <sylvestre@debian.org>
Tue, 31 Jul 2012 06:56:50 +0000 (06:56 +0000)
committerSylvestre Ledru <sylvestre@debian.org>
Tue, 31 Jul 2012 06:56:50 +0000 (06:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161036 91177308-0d34-0410-b5e6-96231b3b80d8

docs/UsersManual.html
lib/Sema/SemaOverload.cpp
test/SemaCXX/warn-thread-safety-analysis.cpp
www/analyzer/installation.html

index 629d9b2574719c378dc735195f848045874beb67..69f916c94e8481376da4047dd4759cf40cad5b9e 100644 (file)
@@ -757,7 +757,7 @@ treated as a system header.</p>
 
 <p>While not strictly part of the compiler, the diagnostics from Clang's <a
 href="http://clang-analyzer.llvm.org">static analyzer</a> can also be influenced
-by the user via changes to the source code. See the avaliable 
+by the user via changes to the source code. See the available 
 <a href = "http://clang-analyzer.llvm.org/annotations.html" >annotations</a> and 
 the analyzer's 
 <a href= "http://clang-analyzer.llvm.org/faq.html#exclude_code" >FAQ page</a> for 
index bdf6f60df3a9bc4cc3a7edaa11fb79c592996eae..7fac1c6ec4aeb31ddc19e3c845e1fd92c6daec9f 100644 (file)
@@ -9332,7 +9332,7 @@ bool Sema::ResolveAndFixSingleFunctionTemplateSpecialization(
       return true;
     }
 
-    // Fix the expresion to refer to 'fn'.
+    // Fix the expression to refer to 'fn'.
     SingleFunctionExpression =
       Owned(FixOverloadedFunctionReference(SrcExpr.take(), found, fn));
 
index 9523d43b9fc0051cdebb535300e55d3008da32e8..f7e4586983ca47175a6788de0eeae78c335e055c 100644 (file)
@@ -1702,7 +1702,7 @@ struct TestTryLock {
     bool b2 = b;
     if (cond)
       b = true;
-    if (b) {    // b should be unknown at this point, becuase of the join point
+    if (b) {    // b should be unknown at this point, because of the join point
       a = 8;    // expected-warning {{writing variable 'a' requires locking 'mu' exclusively}}
     }
     if (b2) {   // b2 should be known at this point.
index ebccd071cdce450925291c04edeb03d229178ee0..2eb7937ee6dd8ab49c0a5265afa75c4e6ca7954d 100644 (file)
@@ -93,7 +93,7 @@ source code</a>.<p>
 <p>For example, if you built a <em>Debug+Asserts</em> build of LLVM/Clang (the
 default), the resultant <tt>clang</tt> binary will be in <tt>$(OBJDIR)/Debug+Asserts/bin</tt>
 (where <tt>$(OBJDIR)</tt> is often the same as the root source directory).  You
-can also do <tt>make install</tt> to install the LLVM/Clang libaries and
+can also do <tt>make install</tt> to install the LLVM/Clang libraries and
 binaries to the installation directory of your choice (specified when you run
 <tt>configure</tt>).</p></li>