From: Emmanuel Odeke Date: Sun, 1 May 2016 23:18:18 +0000 (-0600) Subject: net/http: fix typo in comment in main_test X-Git-Tag: go1.7beta1~366 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=097e2c0a8a759819dde3c9b169058b2fb55b0de3;p=gostls13.git net/http: fix typo in comment in main_test Change-Id: I22d4b5a0d5c146a65d4ef77a32e23f7780ba1d95 Reviewed-on: https://go-review.googlesource.com/22684 Reviewed-by: Brad Fitzpatrick --- diff --git a/src/net/http/main_test.go b/src/net/http/main_test.go index d10fd89b54..aea6e12744 100644 --- a/src/net/http/main_test.go +++ b/src/net/http/main_test.go @@ -123,7 +123,7 @@ func afterTest(t testing.TB) { // waitCondition reports whether fn eventually returned true, // checking immediately and then every checkEvery amount, -// until waitFor has elpased, at which point it returns false. +// until waitFor has elapsed, at which point it returns false. func waitCondition(waitFor, checkEvery time.Duration, fn func() bool) bool { deadline := time.Now().Add(waitFor) for time.Now().Before(deadline) {