]> granicus.if.org Git - clang/commitdiff
[NFC] fix trivial typos in comments
authorHiroshi Inoue <inouehrs@jp.ibm.com>
Tue, 23 Jan 2018 05:50:06 +0000 (05:50 +0000)
committerHiroshi Inoue <inouehrs@jp.ibm.com>
Tue, 23 Jan 2018 05:50:06 +0000 (05:50 +0000)
"the the" -> "the"

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@323177 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/AddressSpaces.h
include/clang/CodeGen/ConstantInitBuilder.h
include/clang/StaticAnalyzer/Checkers/Checkers.td
include/clang/Tooling/Refactoring/Rename/RenamingAction.h

index 6b0090813e9b4046bc8ef59465587f1f18079fc3..67019f69253fd83147ffa1c5badae180bdd26b1b 100644 (file)
@@ -24,7 +24,7 @@ namespace clang {
 /// of QualType.
 ///
 enum class LangAS : unsigned {
-  // The default value 0 is the value used in QualType for the the situation
+  // The default value 0 is the value used in QualType for the situation
   // where there is no address space qualifier.
   Default = 0,
 
index 113d86d82c1083e55c6819fc083b897ffd9f5cd5..d1388f0c51b9b40e539198ef80e4de8c8d9fc8bc 100644 (file)
@@ -295,7 +295,7 @@ public:
     slot = value;
   }
 
-  /// Produce an address which will eventually point to the the next
+  /// Produce an address which will eventually point to the next
   /// position to be filled.  This is computed with an indexed
   /// getelementptr rather than by computing offsets.
   ///
index e510e84e938afbcc6f28f517427fb1de03a18ef2..77820aeea30c99a72e9e33aad51d61530af4796a 100644 (file)
@@ -86,7 +86,7 @@ def LLVM : Package<"llvm">;
 
 // The APIModeling package is for checkers that model APIs and don't perform
 // any diagnostics. These checkers are always turned on; this package is
-// intended for API modeling that is not controlled by the the target triple.
+// intended for API modeling that is not controlled by the target triple.
 def APIModeling : Package<"apiModeling">, Hidden;
 def GoogleAPIModeling : Package<"google">, InPackage<APIModeling>;
 
index 734b624d777bae478288ca77feed33f2ac5848b9..d32ed642b0870f028da50f2e316a2270aa68085f 100644 (file)
@@ -82,7 +82,7 @@ private:
   Expected<AtomicChanges>
   createSourceReplacements(RefactoringRuleContext &Context) override;
 
-  // A NamedDecl which indentifies the the symbol being renamed.
+  // A NamedDecl which indentifies the symbol being renamed.
   const NamedDecl *ND;
   // The new qualified name to change the symbol to.
   std::string NewQualifiedName;