From 5df63a9624873956dfbc3c7b10d3ab081ebb6e2a Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Fri, 13 Dec 2024 22:09:15 -0500 Subject: [PATCH] Fix minor typos in docs (backport #1503) (#1504) * Sphinx link syntax error (`_` in wrong place). * `)` in wrong place in untested Python code example.
This is an automatic backport of pull request #1503 done by [Mergify](https://mergify.com). Co-authored-by: Will Shanks --- docs/howtos/rerun_analysis.rst | 2 +- releasenotes/notes/qiskit13-deprecations-afece0ceea29f3f7.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/howtos/rerun_analysis.rst b/docs/howtos/rerun_analysis.rst index a502b32739..0310dd4131 100644 --- a/docs/howtos/rerun_analysis.rst +++ b/docs/howtos/rerun_analysis.rst @@ -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 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/releasenotes/notes/qiskit13-deprecations-afece0ceea29f3f7.yaml b/releasenotes/notes/qiskit13-deprecations-afece0ceea29f3f7.yaml index d1d142f10c..96a9a0ea9d 100644 --- a/releasenotes/notes/qiskit13-deprecations-afece0ceea29f3f7.yaml +++ b/releasenotes/notes/qiskit13-deprecations-afece0ceea29f3f7.yaml @@ -3,4 +3,4 @@ upgrade: - | Minor adjustments were made to Qiskit Experiments internals to avoid deprecation warnings when using Qiskit 1.3. See `#1482 - _`. + `__.