[clang] Fix a typo "mdoule" in comments. NFC.
authorVolodymyr Sapsai <vsapsai@apple.com>
Fri, 7 Jul 2023 00:18:43 +0000 (17:18 -0700)
committerVolodymyr Sapsai <vsapsai@apple.com>
Fri, 7 Jul 2023 00:19:26 +0000 (17:19 -0700)
clang/include/clang/Serialization/ModuleFile.h
clang/test/CodeGenCXX/modules-vtable.cppm

index 45fb75d..e96f3ce 100644 (file)
@@ -164,7 +164,7 @@ public:
   /// Whether this precompiled header is a relocatable PCH file.
   bool RelocatablePCH = false;
 
-  /// Whether this mdoule file is a standard c++ module.
+  /// Whether this module file is a standard C++ module.
   bool StandardCXXModule = false;
 
   /// Whether timestamps are included in this module file.
index 5d13225..fb179b1 100644 (file)
@@ -68,7 +68,7 @@ int use() {
 
 // Check the case that the declaration of the key function comes from another
 // module unit but the definition of the key function comes from the current
-// mdoule unit.
+// module unit.
 
 //--- M-A.cppm
 export module M:A;