[llvm] r211196 - ADT: correct typo in comment

Ed Maste emaste at freebsd.org
Wed Jun 18 11:08:55 PDT 2014


Author: emaste
Date: Wed Jun 18 13:08:55 2014
New Revision: 211196

URL: http://llvm.org/viewvc/llvm-project?rev=211196&view=rev
Log:
ADT: correct typo in comment

Modified:
    llvm/trunk/include/llvm/ADT/APSInt.h

Modified: llvm/trunk/include/llvm/ADT/APSInt.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/APSInt.h?rev=211196&r1=211195&r2=211196&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/APSInt.h (original)
+++ llvm/trunk/include/llvm/ADT/APSInt.h Wed Jun 18 13:08:55 2014
@@ -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());
   }





More information about the llvm-commits mailing list