From: Duncan Sands Date: Fri, 30 Mar 2007 06:39:42 +0000 (+0000) Subject: Correct typo. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=48a3e98c272d673f075c51d078140765fc267eb8;p=oota-llvm.git Correct typo. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35504 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/APInt.h b/include/llvm/ADT/APInt.h index 25ea4a2bd5d..6ccefc23524 100644 --- a/include/llvm/ADT/APInt.h +++ b/include/llvm/ADT/APInt.h @@ -272,7 +272,7 @@ public: /// @returns true if the argument APInt value is a power of two > 0. bool isPowerOf2() const; - /// This converts the APInt to a boolean valy as a test against zero. + /// This converts the APInt to a boolean value as a test against zero. /// @brief Boolean conversion function. inline bool getBoolValue() const { return countLeadingZeros() != BitWidth;