Skip to content

Commit

Permalink
fix(package): fix package name
Browse files Browse the repository at this point in the history
  • Loading branch information
martianoff committed Jun 30, 2024
1 parent 66c254c commit 848fc55
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![CircleCI](https://dl.circleci.com/status-badge/img/gh/maksimru/go-option/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/maksimru/go-option/tree/main)
[![codecov](https://codecov.io/gh/maksimru/go-option/graph/badge.svg?token=NQICPHBEUQ)](https://codecov.io/gh/maksimru/go-option)
[![PkgGoDev](https://pkg.go.dev/badge/github.com/maksimru/go-option)](https://pkg.go.dev/github.com/maksimru/go-option)
[![Go Report Card](https://goreportcard.com/badge/github.com/maksimru/go-option)](https://goreportcard.com/report/github.com/maksimru/go-option)
[![CircleCI](https://dl.circleci.com/status-badge/img/gh/martianoff/go-option/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/martianoff/go-option/tree/main)
[![codecov](https://codecov.io/gh/martianoff/go-option/graph/badge.svg?token=NQICPHBEUQ)](https://codecov.io/gh/martianoff/go-option)
[![PkgGoDev](https://pkg.go.dev/badge/github.com/martianoff/go-option)](https://pkg.go.dev/github.com/martianoff/go-option)
[![Go Report Card](https://goreportcard.com/badge/github.com/martianoff/go-option)](https://goreportcard.com/report/github.com/martianoff/go-option)

# Go Option

Expand All @@ -26,7 +26,7 @@ v := option.NewOption[int](10)

Remap one option to another option
```
import "github.com/maksimru/go-option"
import "github.com/martianoff/go-option"
type Car struct {
name string
Expand All @@ -47,7 +47,7 @@ carNameOpt := option.Map[Car, string](carOpt, func(c Car) string {

Option composition
```
import "github.com/maksimru/go-option"
import "github.com/martianoff/go-option"
type Car struct {
name string
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/maksimru/go-option
module github.com/martianoff/go-option

go 1.21.1

Expand Down

0 comments on commit 848fc55

Please sign in to comment.