Skip to content

Commit 3e3e150

Browse files
committed
fix incorrect comment
1 parent 7074374 commit 3e3e150

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/aws-cdk-lib/aws-stepfunctions/lib/state-graph.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ export class StateGraph {
215215
const discoveredStateGraphs = new Set<StateGraph>();
216216
const stateGraphsToSearch: StateGraph[] = [this];
217217

218-
// Do a BFS of all sub graphs
218+
// Do a DFS of all sub graphs
219219
while (stateGraphsToSearch.length > 0) {
220220
const stateGraph = stateGraphsToSearch.pop()!;
221221

0 commit comments

Comments
 (0)