docs: change combinatorial to combinational

- Replace occurrences of combinatorial with combinational in docstrings
- Replace occurrences of combinatorial with combinational in .rst files
- Add note to contrib.rst to document the editorial decision from #1301
This commit is contained in:
Chris Baker 2024-04-13 15:01:17 -04:00 committed by Catherine
parent 08aaac9a41
commit c4370efcf4
9 changed files with 32 additions and 31 deletions

View file

@ -277,7 +277,7 @@ Going back to the stream example, the producer and the consumer now communicate
wiring.connect(m, producer.source, consumer.sink)
This function examines the signatures of the two provided interface objects, ensuring that they are exactly complementary, and then adds combinatorial :py:`.eq()` statements to the module for each of the port pairs to form the connection. Aside from the *connectability* check, the single line above is equivalent to:
This function examines the signatures of the two provided interface objects, ensuring that they are exactly complementary, and then adds combinational :py:`.eq()` statements to the module for each of the port pairs to form the connection. Aside from the *connectability* check, the single line above is equivalent to:
.. testcode::