Correct typo in method name (AddSymbolFileRepresendation...)
llvm-svn: 145884
diff --git a/lldb/source/Symbol/SymbolVendor.cpp b/lldb/source/Symbol/SymbolVendor.cpp
index 7711923..3a48756 100644
--- a/lldb/source/Symbol/SymbolVendor.cpp
+++ b/lldb/source/Symbol/SymbolVendor.cpp
@@ -58,7 +58,7 @@
{
ObjectFile *objfile = module->GetObjectFile();
if (objfile)
- instance_ap->AddSymbolFileRepresendation(objfile->GetSP());
+ instance_ap->AddSymbolFileRepresentation(objfile->GetSP());
}
return instance_ap.release();
}
@@ -86,7 +86,7 @@
// Add a represantion given an object file.
//----------------------------------------------------------------------
void
-SymbolVendor::AddSymbolFileRepresendation(const ObjectFileSP &objfile_sp)
+SymbolVendor::AddSymbolFileRepresentation(const ObjectFileSP &objfile_sp)
{
Mutex::Locker locker(m_mutex);
if (objfile_sp)