Skip to content

Commit c7f19ca

Browse files
committed
Typo (NFC)
llvm-svn: 373353
1 parent 771d464 commit c7f19ca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,16 +148,16 @@ TypeSP DWARFASTParserClang::ParseTypeFromDWO(const DWARFDIE &die, Log *log) {
148148
die.GetDeclContext(decl_context);
149149
TypeMap dwo_types;
150150

151-
// The type in the Clang module must have the same langage as the current CU.
151+
// The type in the Clang module must have the same language as the current CU.
152152
LanguageSet languages;
153153
languages.Insert(die.GetCU()->GetLanguageType());
154154
dwo_module_sp->GetSymbolFile()->FindTypes(decl_context, languages, dwo_types);
155155
if (dwo_types.GetSize()) {
156156
if (!IsClangModuleFwdDecl(die))
157157
return TypeSP();
158158

159-
// Since this this type is defined in one of the Clang modules imported by
160-
// this symbol file, search all of them.
159+
// Since this type is defined in one of the Clang modules imported
160+
// by this symbol file, search all of them.
161161
auto &sym_file = die.GetCU()->GetSymbolFileDWARF();
162162
for (const auto &name_module : sym_file.getExternalTypeModules()) {
163163
if (!name_module.second)

0 commit comments

Comments
 (0)