Chromium Code Reviews| Index: client/internal/retry/doc.go |
| diff --git a/client/internal/retry/doc.go b/client/internal/retry/doc.go |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..652beef82f8ff1f64e39adea36f234fa8e9a920e |
| --- /dev/null |
| +++ b/client/internal/retry/doc.go |
| @@ -0,0 +1,8 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +// Package retry implements retriable task management. It uses a callback |
| +// mechanism through the Retriable interface and uses signaling via the |
| +// retry.Error type to knowwhen an error should be retried. |
|
Vadim Sh.
2015/05/13 21:54:48
typo: knowwhen
|
| +package retry |