Skip to content
This repository has been archived by the owner on Jun 8, 2020. It is now read-only.

Commit

Permalink
s/nproc/txgruppi/g
Browse files Browse the repository at this point in the history
  • Loading branch information
txgruppi committed Jan 24, 2017
1 parent bb4a5b9 commit 5be62dd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions README.md
@@ -1,7 +1,7 @@
[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg?style=flat-square)](https://godoc.org/github.com/nproc/retry-go)
[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg?style=flat-square)](https://godoc.org/github.com/txgruppi/retry-go)
![Codeship](https://img.shields.io/codeship/3e5c23f0-c2d6-0133-421c-025eedb952b8.svg?style=flat-square)
[![Codecov](https://img.shields.io/codecov/c/github/nproc/retry-go.svg?style=flat-square)](https://codecov.io/github/nproc/retry-go)
[![Go Report Card](https://img.shields.io/badge/go_report-A+-brightgreen.svg?style=flat-square)](https://goreportcard.com/report/github.com/nproc/retry-go)
[![Codecov](https://img.shields.io/codecov/c/github/txgruppi/retry-go.svg?style=flat-square)](https://codecov.io/github/txgruppi/retry-go)
[![Go Report Card](https://img.shields.io/badge/go_report-A+-brightgreen.svg?style=flat-square)](https://goreportcard.com/report/github.com/txgruppi/retry-go)

# Retry

Expand All @@ -13,7 +13,7 @@ expected from it.
## Installation

```
go get -u github.com/nproc/retry-go
go get -u github.com/txgruppi/retry-go
```

## Example
Expand All @@ -25,7 +25,7 @@ import (
"log"
"time"

"github.com/nproc/retry-go"
"github.com/txgruppi/retry-go"
)

func main() {
Expand All @@ -44,8 +44,8 @@ func main() {
## Tests

```
go get -u -t github.com/nproc/retry-go
cd $GOPATH/src/github.com/nproc/retry-go
go get -u -t github.com/txgruppi/retry-go
cd $GOPATH/src/github.com/txgruppi/retry-go
go test ./...
```

Expand Down
2 changes: 1 addition & 1 deletion doc.go
Expand Up @@ -9,7 +9,7 @@ errors in a ErrorGroup.
If the TryFunc return a nil error at any moment it will be considered a
successful execution and nil will be returned by the 'With*' function.
To know more about the ErrorGroup go to https://github.com/nproc/errorgroup-go
To know more about the ErrorGroup go to https://github.com/txgruppi/errorgroup-go
How many times TryFunc will execute?
Expand Down
2 changes: 1 addition & 1 deletion retry.go
Expand Up @@ -4,7 +4,7 @@ import (
"errors"
"time"

"github.com/nproc/errorgroup-go"
"github.com/txgruppi/errorgroup-go"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions retry_test.go
Expand Up @@ -6,9 +6,9 @@ import (
"testing"
"time"

"github.com/nproc/errorgroup-go"
"github.com/nproc/retry-go"
. "github.com/smartystreets/goconvey/convey"
"github.com/txgruppi/errorgroup-go"
"github.com/txgruppi/retry-go"
)

func TestRetry(t *testing.T) {
Expand Down

0 comments on commit 5be62dd

Please sign in to comment.