aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/BasicBlock.h
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2009-03-01 09:43:41 +0000
committerGabor Greif <ggreif@gmail.com>2009-03-01 09:43:41 +0000
commit1a31d09a16b0b8eaa08c8649bd8673ddb0ad1841 (patch)
treeef787737817c62adc5f7ba35ab603898a176a650 /include/llvm/BasicBlock.h
parentebc6765970b96434eaa8c2254a9038113313065d (diff)
Fix a typo. Thanks baldrick!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65767 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/BasicBlock.h')
-rw-r--r--include/llvm/BasicBlock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/BasicBlock.h b/include/llvm/BasicBlock.h
index baba18a238..3ef83e8a81 100644
--- a/include/llvm/BasicBlock.h
+++ b/include/llvm/BasicBlock.h
@@ -36,7 +36,7 @@ template<> struct ilist_traits<Instruction>
// ilist_node<NodeTy>, there is a legal viable downcast from it
// to NodeTy. We use this trick to superpose i(p)list with a "ghostly"
// NodeTy, which becomes the sentinel. Dereferencing the sentinel is
- // forbidden (save the ilist_node<NodeTy>) so noone will ever notice
+ // forbidden (save the ilist_node<NodeTy>) so no one will ever notice
// the superposition.
return const_cast<Instruction*>(static_cast<const Instruction*>(&Sentinel));
}