From 0cbd5bfe7dbcf3820d70c880ca41f499eed53685 Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Fri, 29 Jan 2016 16:02:07 +0900 Subject: [PATCH] testutil: fix typo in comment --- pkg/testutil/recorder.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/testutil/recorder.go b/pkg/testutil/recorder.go index 2e7938a23..326edaf37 100644 --- a/pkg/testutil/recorder.go +++ b/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