diff --git a/releasenotes/notes/uniform-superposition-gate-3bd95ffdf05ef18c.yaml b/releasenotes/notes/uniform-superposition-gate-3bd95ffdf05ef18c.yaml index a977037ac5cf..4bf0a398dc33 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()