From 810d65a3a336e2e768041a72f966dfa45b9ea9c0 Mon Sep 17 00:00:00 2001 From: Hirmay Sandesara <56473003+Hirmay@users.noreply.github.com> Date: Sun, 28 Apr 2024 22:30:01 +0530 Subject: [PATCH] Update uniform-superposition-gate-3bd95ffdf05ef18c.yaml --- .../notes/uniform-superposition-gate-3bd95ffdf05ef18c.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/releasenotes/notes/uniform-superposition-gate-3bd95ffdf05ef18c.yaml b/releasenotes/notes/uniform-superposition-gate-3bd95ffdf05ef18c.yaml index a977037ac5c..4bf0a398dc3 100644 --- a/releasenotes/notes/uniform-superposition-gate-3bd95ffdf05ef18c.yaml +++ b/releasenotes/notes/uniform-superposition-gate-3bd95ffdf05ef18c.yaml @@ -12,7 +12,7 @@ features: superposition states, requiring only $O(\log_2 (M))$ qubits and $O(\log_2 (M))$ gates. Usage example: - .. plot:: python + .. code-block:: python from qiskit import UniformSuperpositionGate, QuantumCircuit M = 5 @@ -20,4 +20,4 @@ features: usp_gate = UniformSuperpositionGate(M, n) qc = QuantumCircuit(n) qc.append(usp_gate, list(range(n))) - qc.draw('mpl',style="clifford") + qc.draw()