Skip to content

Commit

Permalink
Fix name of circuit
Browse files Browse the repository at this point in the history
qp.create_circuit should create a circuit named 'Circuit' instead of 'qc'. In other parts of the notebook it is called as 'Circuit'.
  • Loading branch information
Filippo Valle authored Nov 11, 2017
1 parent c8ced9d commit c8ed84d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 1_introduction/getting_started.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
"# Creating Circuits\n",
"# create your first Quantum Circuit called \"qc\" involving your Quantum Register \"qr\"\n",
"# and your Classical Register \"cr\"\n",
"qc = qp.create_circuit('qc', [qr], [cr])"
"qc = qp.create_circuit('Circuit', [qr], [cr])"
]
},
{
Expand Down

0 comments on commit c8ed84d

Please sign in to comment.