We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7074374 commit 3e3e150Copy full SHA for 3e3e150
packages/aws-cdk-lib/aws-stepfunctions/lib/state-graph.ts
@@ -215,7 +215,7 @@ export class StateGraph {
215
const discoveredStateGraphs = new Set<StateGraph>();
216
const stateGraphsToSearch: StateGraph[] = [this];
217
218
- // Do a BFS of all sub graphs
+ // Do a DFS of all sub graphs
219
while (stateGraphsToSearch.length > 0) {
220
const stateGraph = stateGraphsToSearch.pop()!;
221
0 commit comments