mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-04-26 15:13:56 +00:00
Fix a variable name typo in qsharp.html.markdown (#4240)
`q` is not defined, instead it should be `qs`.
This commit is contained in:
parent
c465acbc3a
commit
c33c369826
@ -29,10 +29,10 @@ using (qs = Qubit[2]) {
|
|||||||
|
|
||||||
// If you want to change the state of a qubit
|
// If you want to change the state of a qubit
|
||||||
// you have to do this by applying quantum gates to the qubit.
|
// you have to do this by applying quantum gates to the qubit.
|
||||||
H(q[0]); // This changes the state of the first qubit
|
H(qs[0]); // This changes the state of the first qubit
|
||||||
// from |0⟩ (the initial state of allocated qubits)
|
// from |0⟩ (the initial state of allocated qubits)
|
||||||
// to (|0⟩ + |1⟩) / sqrt(2).
|
// to (|0⟩ + |1⟩) / sqrt(2).
|
||||||
// q[1] = |1⟩; - this does NOT work, you have to manipulate a qubit by using gates.
|
// qs[1] = |1⟩; - this does NOT work, you have to manipulate a qubit by using gates.
|
||||||
|
|
||||||
// You can apply multi-qubit gates to several qubits.
|
// You can apply multi-qubit gates to several qubits.
|
||||||
CNOT(qs[0], qs[1]);
|
CNOT(qs[0], qs[1]);
|
||||||
|
Loading…
Reference in New Issue
Block a user