Browse Source

Merge pull request #4343 from shawnps/patch-6

testutil: fix typo in comment
Xiang Li 10 years ago
parent
commit
12556af26b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pkg/testutil/recorder.go

+ 1 - 1
pkg/testutil/recorder.go

@@ -30,7 +30,7 @@ type Recorder interface {
 	// Record publishes an Action (e.g., function call) which will
 	// be reflected by Wait() or Chan()
 	Record(a Action)
-	// Wait waits until at least n Actions are availble or returns with error
+	// Wait waits until at least n Actions are available or returns with error
 	Wait(n int) ([]Action, error)
 	// Action returns immediately available Actions
 	Action() []Action