aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-09-15 15:08:33 +0000
committerDan Gohman <gohman@apple.com>2009-09-15 15:08:33 +0000
commit75144f93eb7e4dbf22d308d21581ae255dd520c6 (patch)
treef0acc51ce091ed09881005e47064ca2e3517f4d8 /include/llvm/ADT
parent59136251f348a02a26f7a711a0e7fc459a727093 (diff)
downloadexternal_llvm-75144f93eb7e4dbf22d308d21581ae255dd520c6.zip
external_llvm-75144f93eb7e4dbf22d308d21581ae255dd520c6.tar.gz
external_llvm-75144f93eb7e4dbf22d308d21581ae255dd520c6.tar.bz2
Fix apostrophos.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81856 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT')
-rw-r--r--include/llvm/ADT/SmallSet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/SmallSet.h b/include/llvm/ADT/SmallSet.h
index caaa96c..d03f1be 100644
--- a/include/llvm/ADT/SmallSet.h
+++ b/include/llvm/ADT/SmallSet.h
@@ -30,7 +30,7 @@ namespace llvm {
template <typename T, unsigned N>
class SmallSet {
/// Use a SmallVector to hold the elements here (even though it will never
- /// reach it's 'large' stage) to avoid calling the default ctors of elements
+ /// reach its 'large' stage) to avoid calling the default ctors of elements
/// we will never use.
SmallVector<T, N> Vector;
std::set<T> Set;