From fbbd1e7e4acc9448ef38b2142a8dbb084eef18db Mon Sep 17 00:00:00 2001 From: Becky Dimock Date: Mon, 12 Jan 2026 15:17:36 -0600 Subject: [PATCH 1/3] Further explain metadata --- docs/guides/primitive-input-output.ipynb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/guides/primitive-input-output.ipynb b/docs/guides/primitive-input-output.ipynb index 87d56525492..6cf65f040eb 100644 --- a/docs/guides/primitive-input-output.ipynb +++ b/docs/guides/primitive-input-output.ipynb @@ -759,7 +759,11 @@ "source": [ "## Result metadata\n", "\n", - "In addition to the execution results, both the `PrimitiveResult` and `PubResult` objects contain a metadata attribute about the job that was submitted. The metadata containing information for all submitted PUBs (such as the various [runtime options](/docs/api/qiskit-ibm-runtime/options) available) can be found in the `PrimitiveResult.metatada`, while the metadata specific to each PUB is found in `PubResult.metadata`." + "In addition to the execution results, both the `PrimitiveResult` and `PubResult` objects contain a metadata attribute about the job that was submitted. The metadata containing information for all submitted PUBs (such as the various [runtime options](/docs/api/qiskit-ibm-runtime/options) available) can be found in the `PrimitiveResult.metatada`, while the metadata specific to each PUB is found in `PubResult.metadata`.\n", + "\n", + "\n", + "The metadata field allows primitive implementations to return any information about execution that they think is relevant, and there are no key-value pairs that are guarenteed by the abstraction. Thus, the returned metadata might be different in different primitive implementations.\n", + " " ] }, { From 19842ba3729806e5464e3e0ea641d1363ca32a39 Mon Sep 17 00:00:00 2001 From: Becky Dimock Date: Mon, 12 Jan 2026 15:23:47 -0600 Subject: [PATCH 2/3] spelling --- docs/guides/primitive-input-output.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/primitive-input-output.ipynb b/docs/guides/primitive-input-output.ipynb index 6cf65f040eb..7013b6b24a8 100644 --- a/docs/guides/primitive-input-output.ipynb +++ b/docs/guides/primitive-input-output.ipynb @@ -762,7 +762,7 @@ "In addition to the execution results, both the `PrimitiveResult` and `PubResult` objects contain a metadata attribute about the job that was submitted. The metadata containing information for all submitted PUBs (such as the various [runtime options](/docs/api/qiskit-ibm-runtime/options) available) can be found in the `PrimitiveResult.metatada`, while the metadata specific to each PUB is found in `PubResult.metadata`.\n", "\n", "\n", - "The metadata field allows primitive implementations to return any information about execution that they think is relevant, and there are no key-value pairs that are guarenteed by the abstraction. Thus, the returned metadata might be different in different primitive implementations.\n", + "The metadata field allows primitive implementations to return any information about execution that they think is relevant, and there are no key-value pairs that are guaranteed by the base primitive. Thus, the returned metadata might be different in different primitive implementations.\n", " " ] }, From a9e71a70e260c7ba292a45c4cf5473d8a3d78c1b Mon Sep 17 00:00:00 2001 From: Rebecca Dimock <66339736+beckykd@users.noreply.github.com> Date: Thu, 15 Jan 2026 15:08:17 -0600 Subject: [PATCH 3/3] Update docs/guides/primitive-input-output.ipynb Co-authored-by: abbycross --- docs/guides/primitive-input-output.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/primitive-input-output.ipynb b/docs/guides/primitive-input-output.ipynb index 7013b6b24a8..9bb19b77b8d 100644 --- a/docs/guides/primitive-input-output.ipynb +++ b/docs/guides/primitive-input-output.ipynb @@ -762,7 +762,7 @@ "In addition to the execution results, both the `PrimitiveResult` and `PubResult` objects contain a metadata attribute about the job that was submitted. The metadata containing information for all submitted PUBs (such as the various [runtime options](/docs/api/qiskit-ibm-runtime/options) available) can be found in the `PrimitiveResult.metatada`, while the metadata specific to each PUB is found in `PubResult.metadata`.\n", "\n", "\n", - "The metadata field allows primitive implementations to return any information about execution that they think is relevant, and there are no key-value pairs that are guaranteed by the base primitive. Thus, the returned metadata might be different in different primitive implementations.\n", + "In the metadata field, primitive implementations can return any information about execution that is relevant to them, and there are no key-value pairs that are guaranteed by the base primitive. Thus, the returned metadata might be different in different primitive implementations.\n", " " ] },