Skip to content
This repository was archived by the owner on Feb 5, 2019. It is now read-only.

Commit 7ec69f6

Browse files
committed
ADT: correct typo in comment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211196 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 52b6c2d commit 7ec69f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/llvm/ADT/APSInt.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class APSInt : public APInt {
5656
APInt::toString(Str, Radix, isSigned());
5757
}
5858
/// toString - Converts an APInt to a std::string. This is an inefficient
59-
/// method, your should prefer passing in a SmallString instead.
59+
/// method; you should prefer passing in a SmallString instead.
6060
std::string toString(unsigned Radix) const {
6161
return APInt::toString(Radix, isSigned());
6262
}

0 commit comments

Comments
 (0)