Skip to content

Commit

Permalink
Fix typo in README
Browse files Browse the repository at this point in the history
Coloquinte committed Dec 22, 2023
1 parent b356818 commit 08d82c5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -46,6 +46,8 @@ Create the parity function on three variables, and check that in can be decompos
Check its value in binary.
```rust
let lut = Lut::parity(3);
assert_eq!(lut.decomposition(0), DecompositionType::Xor);
assert_eq!(lut.top_decomposition(0), DecompositionType::Xor);
assert_eq!(format!("{:b}", lut), "Lut3(10010110)");
```

<!-- cargo-rdme end -->

0 comments on commit 08d82c5

Please sign in to comment.