*: fix mispellings

This commit is contained in:
Jimmy Zelinskie 2016-09-06 00:44:13 -04:00
parent bcdbb04f74
commit 79d5838077
2 changed files with 2 additions and 2 deletions

View file

@ -62,7 +62,7 @@ func TestParseValidURLData(t *testing.T) {
} }
if !mapArrayEqual(parseVal, parsedQueryObj.params) { if !mapArrayEqual(parseVal, parsedQueryObj.params) {
t.Fatalf("Incorrect parse at item %d.\n Expected=%v\n Recieved=%v\n", parseIndex, parseVal, parsedQueryObj.params) t.Fatalf("Incorrect parse at item %d.\n Expected=%v\n Received=%v\n", parseIndex, parseVal, parsedQueryObj.params)
} }
if parsedQueryObj.path != "/announce" { if parsedQueryObj.path != "/announce" {

View file

@ -24,7 +24,7 @@ type Stopper interface {
// The channel can either return one error or be closed. Closing the // The channel can either return one error or be closed. Closing the
// channel signals a clean shutdown. // channel signals a clean shutdown.
// The Stop function should return immediately and perform the actual // The Stop function should return immediately and perform the actual
// shutdown in a seperate goroutine. // shutdown in a separate goroutine.
Stop() <-chan error Stop() <-chan error
} }