fix method name in docstr

This commit is contained in:
Jeff Epler 2023-07-27 20:09:13 -05:00
parent 92e2134009
commit 6083de017a
No known key found for this signature in database
GPG Key ID: D5BF15AB975AB4DE
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@
//| :param int frequency: the target clock frequency of the state machine. Actual may be less. Use 0 for system clock speed.
//| :param ReadableBuffer init: a program to run once at start up. This is run after program
//| is started so instructions may be intermingled
//| :param ReadableBuffer may_exec: Instructions that may be executed via `StateMachine.exec` calls.
//| :param ReadableBuffer may_exec: Instructions that may be executed via `StateMachine.run` calls.
//| Some elements of the `StateMachine`'s configuration are inferred from the instructions used;
//| for instance, if there is no ``in`` or ``push`` instruction, then the `StateMachine` is configured without a receive FIFO.
//| In this case, passing a ``may_exec`` program containing an ``in`` instruction such as ``in x``, a receive FIFO will be configured.