From 9b17a6e7e729d1d4737396ac5b2b2b9b9c78586e Mon Sep 17 00:00:00 2001 From: Agustin Borgna Date: Thu, 6 Jun 2024 14:53:01 +0100 Subject: [PATCH] fix: docs --- tket2/src/circuit.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tket2/src/circuit.rs b/tket2/src/circuit.rs index 1ef9695d..8958342c 100644 --- a/tket2/src/circuit.rs +++ b/tket2/src/circuit.rs @@ -517,7 +517,7 @@ mod tests { .unwrap() } - /// 2-qubit circuit with a Hadamard, a CNOT, and a Rz gate. + /// 2-qubit circuit with a Hadamard, a CNOT, and a X gate. #[fixture] fn simple_circuit() -> Circuit { build_simple_circuit(2, |circ| { @@ -538,7 +538,7 @@ mod tests { .unwrap() } - /// 2-qubit circuit with a Hadamard, a CNOT, and a Rz gate, + /// 2-qubit circuit with a Hadamard, a CNOT, and a X gate, /// defined inside a module. #[fixture] fn simple_module() -> Circuit {