Skip to content

Commit

Permalink
fix comprehension
Browse files Browse the repository at this point in the history
  • Loading branch information
MarquessV committed Mar 6, 2024
1 parent c526766 commit 72fccca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/programs_and_gates.rst
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ filled in for, say, 200 values between :math:`0` and :math:`2\pi`. We demonstrat
.. testcode:: parametric

# Generate a memory map for each set of parameters we want to execute with
memory_maps = [{"theta": [theta] for theta in np.linspace(0, 2 * np.pi, 200)}
memory_maps = [{"theta": [theta] for theta in np.linspace(0, 2 * np.pi, 200)}]

# Begin batch execution of the program using each set of parameters.
# This returns a list of references to each job, the length and order of which correspond to the memory maps we
Expand Down

0 comments on commit 72fccca

Please sign in to comment.