ADT: correct typo in comment
authorEd Maste <emaste@freebsd.org>
Wed, 18 Jun 2014 18:08:55 +0000 (18:08 +0000)
committerEd Maste <emaste@freebsd.org>
Wed, 18 Jun 2014 18:08:55 +0000 (18:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211196 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/APSInt.h

index 053defff52345b374a5adf97d123fd2b5587d4eb..ee34e9b53088339b6057fc82094b98d8ef090581 100644 (file)
@@ -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());
   }