Skip to content

Commit

Permalink
docs: update send api tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhaoyilunnn committed Apr 23, 2024
1 parent 941383a commit 534d357
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion doc/source/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,9 @@ means that you need use the ``retrieve`` method to fetch results when task is do

.. code:: python
res = task.send(qc, wait=True)
res = task.send(qc)
# After task is done, you could fetch results as below
res = task.retrieve(<your-task-id>)
You can use the returned results to check the count and probability of
each measured bit string. The output bits are arranged in **big-endian**
Expand Down

0 comments on commit 534d357

Please sign in to comment.