summaryrefslogtreecommitdiff
path: root/include/llvm/ADT
diff options
context:
space:
mode:
authorEd Maste <emaste@freebsd.org>2014-06-18 18:08:55 +0000
committerEd Maste <emaste@freebsd.org>2014-06-18 18:08:55 +0000
commit7ec69f6e10840562dca6b557e28f1b6e784a3328 (patch)
tree55a8514ef56ff995be69dc7326c8d957aaf3abf6 /include/llvm/ADT
parent52b6c2d6efccb774da0244b65a4d9380b0a107eb (diff)
downloadllvm-7ec69f6e10840562dca6b557e28f1b6e784a3328.tar.gz
llvm-7ec69f6e10840562dca6b557e28f1b6e784a3328.tar.bz2
llvm-7ec69f6e10840562dca6b557e28f1b6e784a3328.tar.xz
ADT: correct typo in comment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211196 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT')
-rw-r--r--include/llvm/ADT/APSInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/APSInt.h b/include/llvm/ADT/APSInt.h
index 053defff52..ee34e9b530 100644
--- a/include/llvm/ADT/APSInt.h
+++ b/include/llvm/ADT/APSInt.h
@@ -56,7 +56,7 @@ public:
APInt::toString(Str, Radix, isSigned());
}
/// toString - Converts an APInt to a std::string. This is an inefficient
- /// method, your should prefer passing in a SmallString instead.
+ /// method; you should prefer passing in a SmallString instead.
std::string toString(unsigned Radix) const {
return APInt::toString(Radix, isSigned());
}