From 09c58c24c8ec4468b8c44c618127e37627f1521d Mon Sep 17 00:00:00 2001 From: Varun Rao <67524072+VarunRao21@users.noreply.github.com> Date: Tue, 2 Jul 2024 14:48:58 -0700 Subject: [PATCH] parameter fix in the documentation for synthesize method (merge_io_vectors) (#453) --- 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`).