Fix singlton -> singleton typo.

llvm-svn: 279801
This commit is contained in:
Eric Christopher 2016-08-26 02:00:21 +00:00
parent 1bf7d30469
commit 269cd8d1d2
5 changed files with 5 additions and 5 deletions

View File

@ -72,7 +72,7 @@ public:
return JITSymbol(nullptr);
});
// Build a singlton module set to hold our module.
// Build a singleton module set to hold our module.
std::vector<std::unique_ptr<Module>> Ms;
Ms.push_back(std::move(M));

View File

@ -82,7 +82,7 @@ public:
return JITSymbol(nullptr);
});
// Build a singlton module set to hold our module.
// Build a singleton module set to hold our module.
std::vector<std::unique_ptr<Module>> Ms;
Ms.push_back(std::move(M));

View File

@ -93,7 +93,7 @@ public:
return JITSymbol(nullptr);
});
// Build a singlton module set to hold our module.
// Build a singleton module set to hold our module.
std::vector<std::unique_ptr<Module>> Ms;
Ms.push_back(std::move(M));

View File

@ -119,7 +119,7 @@ public:
return JITSymbol(nullptr);
});
// Build a singlton module set to hold our module.
// Build a singleton module set to hold our module.
std::vector<std::unique_ptr<Module>> Ms;
Ms.push_back(std::move(M));

View File

@ -146,7 +146,7 @@ public:
exit(1);
}
// Build a singlton module set to hold our module.
// Build a singleton module set to hold our module.
std::vector<std::unique_ptr<Module>> Ms;
Ms.push_back(std::move(M));