diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 77d014eec..c318bb002 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -3,7 +3,7 @@ First read the overall Qiskit project contribution guidelines. These are all included in the Qiskit documentation: -https://qiskit.org/documentation/contributing_to_qiskit.html +https://github.com/Qiskit/qiskit/blob/main/CONTRIBUTING.md While it's not all directly applicable since most of it is about the Qiskit project itself and rustworkx is an independent library developed in tandem diff --git a/README.md b/README.md index a7933b593..b406e312a 100644 --- a/README.md +++ b/README.md @@ -22,11 +22,11 @@ any Python application. ## Project history Rustworkx was originally called retworkx and was created initially to be -a replacement for [qiskit](https://qiskit.org/)'s previous (and current) +a replacement for [Qiskit](https://www.ibm.com/quantum/qiskit)'s previous (and current) NetworkX usage (hence the original name). The project was originally started to build a faster directed graph to use as the underlying data structure for the DAG at the center of -[qiskit-terra](https://github.com/Qiskit/qiskit-terra/)'s transpiler. However, +[qiskit](https://github.com/Qiskit/qiskit/)'s transpiler. However, since it's initial introduction the project has grown substantially and now covers all applications that need to work with graphs which includes Qiskit. diff --git a/docs/source/tutorial/dags.rst b/docs/source/tutorial/dags.rst index 7a184f2de..cc8780e7f 100644 --- a/docs/source/tutorial/dags.rst +++ b/docs/source/tutorial/dags.rst @@ -125,11 +125,11 @@ Qiskit's Compiler ----------------- Another application using directed acyclic graphs is the compiler in -`Qiskit `__. Qiskit is an SDK for working with +`Qiskit `__. Qiskit is an SDK for working with quantum computing. Qiskit's -`compiler `__ +`compiler `__ internally represents a quantum circuit as a -`directed acyclic graph `__. +`directed acyclic graph `__. Rustworkx was originally started to accelerate the performance of the Qiskit compiler's use of directed acyclic graphs.