Skip to content

Fix typos in the documentation. #6359

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Nov 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cirq-core/cirq/ops/pauli_gates.py
Original file line number Diff line number Diff line change
@@ -186,7 +186,7 @@ def basis(self) -> Dict[int, '_ZEigenState']:
This is the `exponent=1` instance of the `cirq.XPowGate`.
The untary matrix of `cirq.X` is:
The unitary matrix of `cirq.X` is:
$$
\begin{bmatrix}
0 & 1 \\
4 changes: 2 additions & 2 deletions docs/start/intro.ipynb
Original file line number Diff line number Diff line change
@@ -162,9 +162,9 @@
"\n",
"- A `Circuit` is a collection of `Moment`s. \n",
"- A `Moment` is a collection of `Operation`s that all act during the same abstract time slice. \n",
"- An `Operation` is a an effect that operates on a specific subset of Qubits. \n",
"- An `Operation` is an effect that operates on a specific subset of Qubits. \n",
" - The most common type of `Operation` is a `Gate` applied to several qubits (a \"`GateOperation`\"). \n",
"- The `Qubit`s of a circuit are implicitly defined by the operations - you can't allocate qubits to a Circuit\n",
"- The `Qubit`s of a circuit are implicitly defined by the operations - you can't allocate qubits to a Circuit.\n",
" "
]
},