From f8ffbea1b68b483f8dc716781f2c514a02aa765e Mon Sep 17 00:00:00 2001 From: Dave Bacon Date: Thu, 23 Sep 2021 12:01:32 -0700 Subject: [PATCH] Fix docstring for fsim gate (#4520) --- cirq-core/cirq/ops/fsim_gate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cirq-core/cirq/ops/fsim_gate.py b/cirq-core/cirq/ops/fsim_gate.py index e05d9d7974a..23ef79c8f01 100644 --- a/cirq-core/cirq/ops/fsim_gate.py +++ b/cirq-core/cirq/ops/fsim_gate.py @@ -88,7 +88,7 @@ def __init__(self, theta: float, phi: float) -> None: iSWAP gate. Maximum strength (full iswap) is at pi/2. phi: Controlled phase angle, in radians. Determines how much the ``|11⟩`` state is phased. Note: uses opposite sign convention to - the CZPowGate. Maximum strength (full cz) is at pi/2. + the CZPowGate. Maximum strength (full cz) is at pi. """ self.theta = _canonicalize(theta) self.phi = _canonicalize(phi)