From 2998d5b639ef9615568075d7dd6605158ccfa4e7 Mon Sep 17 00:00:00 2001 From: Will Shanks Date: Fri, 13 Dec 2024 18:38:01 -0500 Subject: [PATCH] Fix minor typos in docs (#1503) * Sphinx link syntax error (`_` in wrong place). * `)` in wrong place in untested Python code example. (cherry picked from commit 840a231e78453c3cead6e068968c9eaf69901e7b) --- 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 - _`. + `__.