Skip to content

Commit ded535c

Browse files
committed
Fix comma typo
1 parent f2b618a commit ded535c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/circuit.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ nb::class_<Circuit>(m, "Circuit")
483483
.def("nb_root_nodes", &Circuit::nb_root_nodes, "number of root nodes in the circuit")
484484
.def("true_node", &Circuit::true_node, "adds a true node to the circuit, and returns a pointer")
485485
.def("false_node", &Circuit::false_node, "adds a false node to the circuit, and returns a pointer")
486-
.def("literal_node", &Circuit::literal_node, "adds a literal node to the circuit ,and returns a pointer")
486+
.def("literal_node", &Circuit::literal_node, "adds a literal node to the circuit, and returns a pointer")
487487
.def("or_node", &Circuit::or_node, "children"_a, "adds an or node to the circuit, and returns a pointer")
488488
.def("and_node", &Circuit::and_node, "children"_a, "adds an and node to the circuit, and returns a pointer")
489489
.def("set_root", &Circuit::set_root, "root"_a, "marks a node pointer as root")

0 commit comments

Comments
 (0)