Skip to content

Commit

Permalink
Fix minor typos in docs (#1503)
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.

(cherry picked from commit 840a231)
  • Loading branch information
wshanks authored and mergify[bot] committed Dec 14, 2024
1 parent 4f32245 commit 2998d5b
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 2998d5b

Please sign in to comment.