fix comments
authorJacob Lifshay <programmerjake@gmail.com>
Wed, 3 Jul 2019 04:23:21 +0000 (21:23 -0700)
committerJacob Lifshay <programmerjake@gmail.com>
Wed, 3 Jul 2019 04:23:21 +0000 (21:23 -0700)
src/ieee754/div_rem_sqrt_rsqrt/algorithm.py

index 6b9c2b19231338126ea6a9fe45dcbcade8c4dc8f..c073dd6fc4c4addd87a8ea8f820beabae22c3860 100644 (file)
@@ -491,8 +491,8 @@ class FixedSqrt:
     :attribute root: the square root
     :attribute root_squared: the square of ``root``
     :attribute remainder: the remainder
-    :attribute log2_radix: the base-2 log of the division radix. The number of
-        bits of quotient that are calculated per pipeline stage.
+    :attribute log2_radix: the base-2 log of the operation radix. The number of
+        bits of root that are calculated per pipeline stage.
     :attribute current_shift: the current bit index
     """
 
@@ -500,8 +500,8 @@ class FixedSqrt:
         """ Create an FixedSqrt.
 
         :param radicand: the radicand.
-        :param log2_radix: the base-2 log of the division radix. The number of
-            bits of result that are calculated per pipeline stage.
+        :param log2_radix: the base-2 log of the operation radix. The number of
+            bits of root that are calculated per pipeline stage.
         """
         assert isinstance(radicand, Fixed)
         assert radicand.signed is False
@@ -513,7 +513,7 @@ class FixedSqrt:
         self.current_shift = self.root.bit_width
 
     def calculate_stage(self):
-        """ Calculate the next pipeline stage of the division.
+        """ Calculate the next pipeline stage of the operation.
 
         :returns bool: True if this is the last pipeline stage.
         """