[clang-tools-extra] NFC: Fix trivial typo in documents and comments
authorKazuaki Ishizaki <ishizaki@jp.ibm.com>
Sun, 5 Apr 2020 02:25:24 +0000 (11:25 +0900)
committerKazuaki Ishizaki <ishizaki@jp.ibm.com>
Sun, 5 Apr 2020 02:26:19 +0000 (11:26 +0900)
Differential Revision: https://reviews.llvm.org/D77458

clang-tools-extra/clang-tidy/fuchsia/MultipleInheritanceCheck.cpp

index 357ecb0..76b8ac0 100644 (file)
@@ -116,7 +116,7 @@ void MultipleInheritanceCheck::check(const MatchFinder::MatchResult &Result) {
     }
 
     if (NumConcrete > 1) {
-      diag(D->getBeginLoc(), "inheriting mulitple classes that aren't "
+      diag(D->getBeginLoc(), "inheriting multiple classes that aren't "
                              "pure virtual is discouraged");
     }
   }