summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2011-06-09 20:11:46 +0000
committerJohnny Chen <johnny.chen@apple.com>2011-06-09 20:11:46 +0000
commite5dfa8f697d3c48361d507491d0cff35607ed419 (patch)
tree6f5919e0a712c92279e37d26e0cbc7c834a834c3 /examples
parent1dd94bbfa1269b1144a87f5fe9dbc04869f858b4 (diff)
downloadllvm-e5dfa8f697d3c48361d507491d0cff35607ed419.tar.gz
llvm-e5dfa8f697d3c48361d507491d0cff35607ed419.tar.bz2
llvm-e5dfa8f697d3c48361d507491d0cff35607ed419.tar.xz
Modify comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132800 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r--examples/HowToUseJIT/HowToUseJIT.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/HowToUseJIT/HowToUseJIT.cpp b/examples/HowToUseJIT/HowToUseJIT.cpp
index a8c3ce45f1..2fb2b5e872 100644
--- a/examples/HowToUseJIT/HowToUseJIT.cpp
+++ b/examples/HowToUseJIT/HowToUseJIT.cpp
@@ -91,7 +91,7 @@ int main() {
// Now, function add1 is ready.
- // Now we going to create function `foo', which returns an int and takes no
+ // Now we're going to create function `foo', which returns an int and takes no
// arguments.
Function *FooF =
cast<Function>(M->getOrInsertFunction("foo", Type::getInt32Ty(Context),