diff options
-rw-r--r-- | include/llvm/ADT/APInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/APInt.h b/include/llvm/ADT/APInt.h index 25ea4a2bd5..6ccefc2352 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; |