Skip to content

Commit

Permalink
chore(graph): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
amejiarosario committed May 18, 2021
1 parent 1812da7 commit cec3b04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/data-structures/graphs/graph.js
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ class Graph {
}
}

Graph.UNDIRECTED = Symbol('directed graph'); // two-ways edges
Graph.DIRECTED = Symbol('undirected graph'); // one-way edges
Graph.UNDIRECTED = Symbol('undirected graph'); // two-way edges
Graph.DIRECTED = Symbol('directed graph'); // one-way edges

module.exports = Graph;

0 comments on commit cec3b04

Please sign in to comment.