From 10ccfb962f74ffd9875e57d5237194c469c2d3a5 Mon Sep 17 00:00:00 2001 From: Jake Lishman Date: Mon, 18 Sep 2023 12:50:05 +0100 Subject: [PATCH] Fix errant plural --- qiskit/dagcircuit/dagdependency.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qiskit/dagcircuit/dagdependency.py b/qiskit/dagcircuit/dagdependency.py index ae838a5c8941..8e4904c2b8b2 100644 --- a/qiskit/dagcircuit/dagdependency.py +++ b/qiskit/dagcircuit/dagdependency.py @@ -48,7 +48,7 @@ class DAGDependency: - """Object to represent a quantum circuit as a Directed Acyclic Graphs (DAG) + """Object to represent a quantum circuit as a Directed Acyclic Graph (DAG) via operation dependencies (i.e. lack of commutation). The nodes in the graph are operations represented by quantum gates.