summaryrefslogtreecommitdiff
path: root/examples/Kaleidoscope/BuildingAJIT/Chapter3/KaleidoscopeJIT.h
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2016-08-26 02:00:21 +0000
committerEric Christopher <echristo@gmail.com>2016-08-26 02:00:21 +0000
commit7092439c66c907624c98d60d5fb85ba44cf708d7 (patch)
treee181094a328a27fa008d6448c6b9be4ba0c44ff1 /examples/Kaleidoscope/BuildingAJIT/Chapter3/KaleidoscopeJIT.h
parent734891c58331fe92a41907c6cee1cb99f23b5d9c (diff)
Fix singlton -> singleton typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@279801 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples/Kaleidoscope/BuildingAJIT/Chapter3/KaleidoscopeJIT.h')
-rw-r--r--examples/Kaleidoscope/BuildingAJIT/Chapter3/KaleidoscopeJIT.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Kaleidoscope/BuildingAJIT/Chapter3/KaleidoscopeJIT.h b/examples/Kaleidoscope/BuildingAJIT/Chapter3/KaleidoscopeJIT.h
index 58afd9ab158..62c61aac6e6 100644
--- a/examples/Kaleidoscope/BuildingAJIT/Chapter3/KaleidoscopeJIT.h
+++ b/examples/Kaleidoscope/BuildingAJIT/Chapter3/KaleidoscopeJIT.h
@@ -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));