Skip to content

Commit

Permalink
Fix minor typos in docs (backport #1503) (#1504)
Browse files Browse the repository at this point in the history
* Sphinx link syntax error (`_` in wrong place).
* `)` in wrong place in untested Python code example.<hr>This is an
automatic backport of pull request #1503 done by
[Mergify](https://mergify.com).

Co-authored-by: Will Shanks <[email protected]>
  • Loading branch information
mergify[bot] and wshanks authored Dec 14, 2024
1 parent 4f32245 commit 5df63a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/howtos/rerun_analysis.rst
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ restore it later with the following lines of code:
from qiskit_experiments.framework import ExperimentDecoder, ExperimentEncoder

serialized_exp = json.dumps(Experiment.config(), cls=ExperimentEncoder)
Experiment.from_config(json.loads(serialized_exp), cls=ExperimentDecoder)
Experiment.from_config(json.loads(serialized_exp, cls=ExperimentDecoder))

Rerunning with different analysis options
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ upgrade:
- |
Minor adjustments were made to Qiskit Experiments internals to avoid
deprecation warnings when using Qiskit 1.3. See `#1482
<https://github.com/qiskit-community/qiskit-experiments/pull/1482>_`.
<https://github.com/qiskit-community/qiskit-experiments/pull/1482>`__.

0 comments on commit 5df63a9

Please sign in to comment.