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

@@ -34,6 +34,7 @@ Or Rikon <rikonor@gmail.com>
Pontus Melke <pontusmelke@gmail.com>
Renée French
Robin Eklind <r.eklind.87@gmail.com>
Samuel Kelemen <Samuel@Kelemen.us>
Scott Holden <scott@sshconnection.com>
Sebastien Binet <seb.binet@gmail.com>
Shawn Smith <shawnpsmith@gmail.com>

View File

@@ -41,6 +41,7 @@ Or Rikon <rikonor@gmail.com>
Pontus Melke <pontusmelke@gmail.com>
Renée French
Robin Eklind <r.eklind.87@gmail.com>
Samuel Kelemen <Samuel@Kelemen.us>
Scott Holden <scott@sshconnection.com>
Sebastien Binet <seb.binet@gmail.com>
Shawn Smith <shawnpsmith@gmail.com>

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