Skip to content
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
4 changes: 2 additions & 2 deletions docs/hardware/ionq/getting_started.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
"\n",
"## Running a simple circuit\n",
"\n",
"The IonQ API supports a limited set of gates natively. Circuit built with these gates do not need any modification and can be run directly against the API. For a list of the API supported gates see [circuit documentation](/cirq/hardware/ionq/circuit.md). One supported gate is the square root of not gate, which we use here in conjunction with a controlled-not gate. The following cell will run the circuit below, blocking until the program has run and results have been returned:"
"The IonQ API supports a limited set of gates natively. Circuit built with these gates do not need any modification and can be run directly against the API. For a list of the API supported gates see [circuit documentation](/cirq/hardware/ionq/circuits.md). One supported gate is the square root of not gate, which we use here in conjunction with a controlled-not gate. The following cell will run the circuit below, blocking until the program has run and results have been returned:"
]
},
{
Expand All @@ -148,7 +148,7 @@
"source": [
"q0, q1 = cirq.LineQubit.range(2)\n",
"circuit = cirq.Circuit(\n",
" cirq.X(q0)**0.5, # Square root of X\n",
" cirq.X(q0) ** 0.5, # Square root of X\n",
" cirq.CX(q0, q1), # CNOT\n",
" cirq.measure(q0, q1, key='b') # Measure both qubits\n",
")\n",
Expand Down