summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2015-02-19 05:33:30 +0000
committerLang Hames <lhames@gmail.com>2015-02-19 05:33:30 +0000
commit668fc94ea55a31c1971bd23a8f046b829a88fd14 (patch)
treef75801d9e55894725d514b312f6f13cbe2579f28 /examples
parent07aa3556c450258ddab1d9442322e1e8fc3ae7c7 (diff)
downloadllvm-668fc94ea55a31c1971bd23a8f046b829a88fd14.tar.gz
[Orc][Kaleidoscope] Fix typo in tutorial comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229821 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r--examples/Kaleidoscope/Orc/fully_lazy/toy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Kaleidoscope/Orc/fully_lazy/toy.cpp b/examples/Kaleidoscope/Orc/fully_lazy/toy.cpp
index 92f4ba22982a..f29a6f52f189 100644
--- a/examples/Kaleidoscope/Orc/fully_lazy/toy.cpp
+++ b/examples/Kaleidoscope/Orc/fully_lazy/toy.cpp
@@ -1243,7 +1243,7 @@ private:
}
// This method will take the AST for a function definition and IR-gen a stub
- // for that function that will, on first call, IR-gen the action body of the
+ // for that function that will, on first call, IR-gen the actual body of the
// function.
ModuleHandleT irGenStub(std::unique_ptr<FunctionAST> FnAST) {
// Step 1) IRGen a prototype for the stub. This will have the same type as