comment cleanup
[nmigen-soc.git] / nmigen_soc / csr / wishbone.py
index abc8af6f65cf39dd2257fef9e95521adb38ae931..9e89f49ce36357032564d6806b09297f49e251d3 100644 (file)
@@ -58,9 +58,9 @@ class WishboneCSRBridge(Elaboratable):
             granularity=csr_bus.data_width,
             name="wb")
 
-        # Since granularity of the Wishbone interface matches the data width of the CSR bus,
-        # no width conversion is performed, even if the Wishbone data width is
-        # greater.
+        # Since granularity of the Wishbone interface matches the data
+        # width of the CSR bus, no width conversion is performed, even
+        # if the Wishbone data width is greater.
         self.wb_bus.memory_map.add_window(self.csr_bus.memory_map)
 
     def elaborate(self, platform):