From 29acd55eb443f770dce0837f343ace00ffa0586e Mon Sep 17 00:00:00 2001 From: Inho Choi <79438062+q-inho@users.noreply.github.com> Date: Thu, 18 Aug 2022 00:18:32 +0900 Subject: [PATCH] typo in qiskit_runtime_vqe_program.ipynb (#472) advange -> advantage Co-authored-by: Kevin Tian --- .../sample_vqe_program/qiskit_runtime_vqe_program.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/sample_vqe_program/qiskit_runtime_vqe_program.ipynb b/docs/tutorials/sample_vqe_program/qiskit_runtime_vqe_program.ipynb index f19dc5935..13b691079 100644 --- a/docs/tutorials/sample_vqe_program/qiskit_runtime_vqe_program.ipynb +++ b/docs/tutorials/sample_vqe_program/qiskit_runtime_vqe_program.ipynb @@ -113,7 +113,7 @@ "id": "fca6d7c5", "metadata": {}, "source": [ - "Next we have to provide the ability to specify the parameterized Ansatz circuit. Here we will take advange of the fact that many ansatz circuits are pre-defined in the Qiskit Circuit Library. Examples can be found in the [N-local circuits section](https://qiskit.org/documentation/apidoc/circuit_library.html#n-local-circuits).\n", + "Next we have to provide the ability to specify the parameterized Ansatz circuit. Here we will take advantage of the fact that many ansatz circuits are pre-defined in the Qiskit Circuit Library. Examples can be found in the [N-local circuits section](https://qiskit.org/documentation/apidoc/circuit_library.html#n-local-circuits).\n", "\n", "We would like the user to be able to select between ansatz options such as: `NLocal`, `TwoLocal`, and `EfficientSU2`. We could have the user pass the whole ansatz circuit to the program; however, in order to reduce the size of the upload we will pass the ansatz by name. In the runtime program, we can take this name and get the class that it corresponds to from the library using, for example, " ]