forgot dashes

This commit is contained in:
Jaime Pillora 2015-03-07 13:35:25 +11:00
parent d61cb21927
commit 2ff7c46940
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ $ go get -v github.com/jpillora/backoff
### Usage
Backoff is a `time.Duration` counter. It starts at `Min`. After every call to `Duration()` it is multiplied by `Factor`. It is capped at `Max`. It returns to `Min` on every call to `Reset()`. `Jitter` adds randomness ([see below](#exampleusingjitter)). Used in conjunction with the `time` package.
Backoff is a `time.Duration` counter. It starts at `Min`. After every call to `Duration()` it is multiplied by `Factor`. It is capped at `Max`. It returns to `Min` on every call to `Reset()`. `Jitter` adds randomness ([see below](#example-using-jitter)). Used in conjunction with the `time` package.
---