Skip to content

Commit

Permalink
chore: fix typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
evocateur committed May 13, 2019
1 parent 6fcbc36 commit f9fa74e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/query-graph/query-graph.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class QueryGraph {
}

_onlyCyclesLeft() {
// Check if every remaining package is a pacakge from the cycleNodes graph
// Check if every remaining package is a package from the cycleNodes graph
return Array.from(this.graph.values()).every(node =>
Array.from(this.cycleNodes).some(cycleNode => cycleNode.name === node.name)
);
Expand Down

0 comments on commit f9fa74e

Please sign in to comment.