Skip to content

Commit

Permalink
Merge pull request #57 from JMuff22/patch-1
Browse files Browse the repository at this point in the history
Fix typo in README example
  • Loading branch information
cqc-alec authored Jul 31, 2023
2 parents 8182f5d + ce71d31 commit 48ebb25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ circuit.H(0)
circuit.CX(0, 1)
circuit.CX(0, 2)
circuit.measure_all()
circuit = backend.get_compiled_circuit(circuit)
compiled_circuit = backend.get_compiled_circuit(circuit)

result = backend.run_circuit(c, n_shots=100)
result = backend.run_circuit(compiled_circuit, n_shots=100)
print(result.get_shots())
```

Expand Down

0 comments on commit 48ebb25

Please sign in to comment.