From 0208c3013ee9fd7aeee14267c8f094dff622b392 Mon Sep 17 00:00:00 2001 From: Varun Date: Mon, 1 Jul 2024 20:45:46 -0700 Subject: [PATCH] parameter fix in the documentation for synthesize method (merge_io_vectors) --- pyrtl/passes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyrtl/passes.py b/pyrtl/passes.py index dc296ac4..0b684303 100644 --- a/pyrtl/passes.py +++ b/pyrtl/passes.py @@ -465,7 +465,7 @@ def synthesize(update_working_block=True, merge_io_vectors=True, block=None): :param bool update_working_block: Boolean specifying if working block should be set to the newly synthesized block. - :param bool merge_io_wirevectors: if False, turn all N-bit IO wirevectors + :param bool merge_io_vectors: if False, turn all N-bit IO wirevectors into N 1-bit IO wirevectors (i.e. don't maintain interface). :param Block block: The block you want to synthesize. :return: The newly synthesized block (of type :py:class:`.PostSynthBlock`).