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, " ]