Skip to content

Commit 17bc241

Browse files
committed
Fix doc
1 parent f80c156 commit 17bc241

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ fn main() {
6969
```
7070

7171
As you can see, this library provides 3 types of Boolean functions:
72-
- `BooleanFunction`: for Boolean functions with an arbitrary number of variables (up to 31). This is a wrapper for `Box<dyn BooleanFunctionImpl>`.
72+
- `BooleanFunction`: for Boolean functions with an arbitrary number of variables (up to 31). This is an enum between `SmallBooleanFunction` and `BigBooleanFunction`.
7373
- `SmallBooleanFunction`: for Boolean functions with up to 6 variables. Internally, the truth table is stored as a `u64`.
7474
- `BigBooleanFunction`: for Boolean functions with more than 6 variables. Internally, the truth table is stored as a `BigUint`.
7575

0 commit comments

Comments
 (0)