remove unnecessary <no space here> messages
authorJacob Lifshay <programmerjake@gmail.com>
Wed, 22 Dec 2021 01:02:34 +0000 (17:02 -0800)
committerJacob Lifshay <programmerjake@gmail.com>
Wed, 22 Dec 2021 01:02:34 +0000 (17:02 -0800)
src/nmutil/grev.py
src/nmutil/lut.py

index c529bbc55052b4053133a1badbed992e9dc265e1..166414c27fc001a2289aedb9c5fb21394a3aae51 100644 (file)
@@ -37,7 +37,7 @@ def grev(inval, chunk_sizes, log2_width):
 
 
 class GRev(Elaboratable):
-    """ <--no space here>Generalized bit-reverse.
+    """Generalized bit-reverse.
 
     https://bugs.libre-soc.org/show_bug.cgi?id=755
 
index 4b254fc0119f7d27a5a04344996b97d71c05b4dd..261a1d1bcbfc1a7fab2e9c103667b38e530c5bc0 100644 (file)
@@ -17,7 +17,7 @@ from nmigen.cli import rtlil
 
 
 class BitwiseMux(Elaboratable):
-    """ <- XXX no space here>Mux, but treating input/output Signals as bit vectors, rather than
+    """Mux, but treating input/output Signals as bit vectors, rather than
     integers. This means each bit in the output is independently multiplexed
     based on the corresponding bit in each of the inputs.
     """
@@ -35,10 +35,10 @@ class BitwiseMux(Elaboratable):
 
 
 class BitwiseLut(Elaboratable):
-    """ <- XXX no space here>Bitwise logic operators implemented using a look-up table, like LUTs in
-        FPGAs. Inspired by x86's `vpternlog[dq]` instructions.
+    """Bitwise logic operators implemented using a look-up table, like LUTs in
+    FPGAs. Inspired by x86's `vpternlog[dq]` instructions.
 
-        Each output bit `i` is set to `lut[Cat(inp[i] for inp in self.inputs)]`
+    Each output bit `i` is set to `lut[Cat(inp[i] for inp in self.inputs)]`
     """
 
     def __init__(self, input_count, width):
@@ -81,10 +81,10 @@ class BitwiseLut(Elaboratable):
 
 
 class TreeBitwiseLut(Elaboratable):
-    """ <- XXX no space here>Tree-based version of BitwiseLut. See BitwiseLut for API documentation.
-        (good enough reason to say "see bitwiselut", but mention that
-        the API is identical and explain why the second implementation
-        exists, despite it being identical)
+    """Tree-based version of BitwiseLut. See BitwiseLut for API documentation.
+    (good enough reason to say "see bitwiselut", but mention that
+    the API is identical and explain why the second implementation
+    exists, despite it being identical)
     """
 
     def __init__(self, input_count, width):