Skip to content

Commit

Permalink
Resolve review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Lotes committed Aug 28, 2024
1 parent 14e0c98 commit efbca81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hugo/content/docs/recipes/validation/dependency-loops.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Dependency loops"
title: "Dependency Loops"
weight: 100
---

Expand Down Expand Up @@ -226,7 +226,7 @@ Here is the screenshot of VS Code with the error:
The topological sort can be done like this:

```typescript
import { topologicalSort } from 'graphology-dag;
import { topologicalSort } from 'graphology-dag';

//resolvedOrder is an array of person names!
const resolvedOrder = topologicalSort(graph);
Expand Down

0 comments on commit efbca81

Please sign in to comment.