From: Ed Maste Date: Wed, 18 Jun 2014 18:08:55 +0000 (+0000) Subject: ADT: correct typo in comment X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7ec69f6e10840562dca6b557e28f1b6e784a3328;p=oota-llvm.git ADT: correct typo in comment git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211196 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/APSInt.h b/include/llvm/ADT/APSInt.h index 053defff523..ee34e9b5308 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()); }