typo
authorSanjay Patel <spatel@rotateright.com>
Thu, 11 Sep 2014 15:41:01 +0000 (15:41 +0000)
committerSanjay Patel <spatel@rotateright.com>
Thu, 11 Sep 2014 15:41:01 +0000 (15:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217597 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/APInt.cpp

index fa929eb0a556e0054d1209192b121d66b1b070c0..91895f360a11e0223fc31f4bbe206d347510dbb3 100644 (file)
@@ -1303,7 +1303,7 @@ APInt APInt::sqrt() const {
 
   // Okay, all the short cuts are exhausted. We must compute it. The following
   // is a classical Babylonian method for computing the square root. This code
-  // was adapted to APINt from a wikipedia article on such computations.
+  // was adapted to APInt from a wikipedia article on such computations.
   // See http://www.wikipedia.org/ and go to the page named
   // Calculate_an_integer_square_root.
   unsigned nbits = BitWidth, i = 4;