graph: fix typo

This commit is contained in:
Samuel Kelemen
2017-07-06 22:40:29 -04:00
committed by Dan Kortschak
parent 39b486f179
commit 388406a0da
3 changed files with 3 additions and 1 deletions

View File

@@ -30,7 +30,7 @@ type Graph interface {
// from the given node.
From(Node) []Node
// HasEdgeBeteen returns whether an edge exists between
// HasEdgeBetween returns whether an edge exists between
// nodes x and y without considering direction.
HasEdgeBetween(x, y Node) bool