Correct a comment.
authorDuncan Sands <baldrick@free.fr>
Thu, 10 Jul 2008 11:21:59 +0000 (11:21 +0000)
committerDuncan Sands <baldrick@free.fr>
Thu, 10 Jul 2008 11:21:59 +0000 (11:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53401 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/APInt.h

index c98ff18d1017ee9d5ba91f5da2ed1b9ee59c4757..bf84cbb2c65386eb91df0345dff6f5436e4eed51 100644 (file)
@@ -997,10 +997,10 @@ public:
     return toString(radix, false);
   }
 
-  /// Considers the APInt to be unsigned and converts it into a string in the
+  /// Considers the APInt to be signed and converts it into a string in the
   /// radix given. The radix can be 2, 8, 10 or 16.
   /// @returns a character interpretation of the APInt
-  /// @brief Convert unsigned APInt to string representation.
+  /// @brief Convert signed APInt to string representation.
   std::string toStringSigned(uint8_t radix = 10) const {
     return toString(radix, true);
   }