소스 검색

testutil: fix typo in comment

Shawn Smith 10 년 전
부모
커밋
0cbd5bfe7d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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
 	// Record publishes an Action (e.g., function call) which will
 	// be reflected by Wait() or Chan()
 	// be reflected by Wait() or Chan()
 	Record(a Action)
 	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)
 	Wait(n int) ([]Action, error)
 	// Action returns immediately available Actions
 	// Action returns immediately available Actions
 	Action() []Action
 	Action() []Action