Fix typo
All checks were successful
/ test (push) Successful in 14m36s

Fixes: #1
This commit is contained in:
Jacob Lifshay 2024-07-22 15:58:05 -07:00
parent 180ecad017
commit 0611044941
Signed by: programmerjake
SSH key fingerprint: SHA256:B1iRVvUJkvd7upMIiMqn6OyxvD2SgJkAH3ZnUOj6z+c

View file

@ -4,7 +4,7 @@
//! they have no memory (they're combinatorial).
//! You must [connect][`ModuleBuilder::connect`] to all wires, so they have a defined value.
//!
//! Registers create a Rust variable with type [`Expr<T>`] where `T` is the type of the register.
//! Wires create a Rust variable with type [`Expr<T>`] where `T` is the type of the wire.
//!
//! Wires follow [connection semantics], which are unlike assignments in software, so you should read it.
//!