Skip to content

Commit

Permalink
fix another bug in doc
Browse files Browse the repository at this point in the history
  • Loading branch information
BoxiLi committed Jul 24, 2021
1 parent 95224c1 commit a1d44cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/source/qip-basics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ full dimension of the circuit:

.. testcode::

U_list = qc.propagators()
U_list = qc.propagators(ignore_measurement=True)
print(U_list)

**Output**:
Expand Down Expand Up @@ -103,7 +103,7 @@ can be achieved with the argument ``expand=False`` specified to the

.. testcode::

U_list = qc.propagators(expand=False)
U_list = qc.propagators(expand=False, ignore_measurement=True)
print(U_list)

**Output**:
Expand Down

0 comments on commit a1d44cb

Please sign in to comment.