diff --git a/clang/include/clang/Serialization/ModuleFile.h b/clang/include/clang/Serialization/ModuleFile.h index 45fb75df8a4352..e96f3ce06c2ceb 100644 --- a/clang/include/clang/Serialization/ModuleFile.h +++ b/clang/include/clang/Serialization/ModuleFile.h @@ -164,7 +164,7 @@ class ModuleFile { /// 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. diff --git a/clang/test/CodeGenCXX/modules-vtable.cppm b/clang/test/CodeGenCXX/modules-vtable.cppm index 5d13225697b4da..fb179b1de4880b 100644 --- a/clang/test/CodeGenCXX/modules-vtable.cppm +++ b/clang/test/CodeGenCXX/modules-vtable.cppm @@ -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;