Skip to content

Commit

Permalink
fix repo pathing
Browse files Browse the repository at this point in the history
  • Loading branch information
jackspirou committed Sep 15, 2024
1 parent 20281fe commit 19f82c2
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
Expand Up @@ -112,7 +112,7 @@ import "github.com/agentstation/publicid"
<a name="New"></a>
## func [New](<https://github.com/addmax-ai/publicid/blob/master/publicid.go#L31>)
## func [New](<https://github.com/agentstation/publicid/blob/master/publicid.go#L31>)
```go
func New(opts ...Option) (string, error)
Expand All @@ -121,7 +121,7 @@ func New(opts ...Option) (string, error)
New generates a unique nanoID with a length of 8 characters and the given options.
<a name="NewLong"></a>
## func [NewLong](<https://github.com/addmax-ai/publicid/blob/master/publicid.go#L36>)
## func [NewLong](<https://github.com/agentstation/publicid/blob/master/publicid.go#L36>)
```go
func NewLong(opts ...Option) (string, error)
Expand All @@ -130,7 +130,7 @@ func NewLong(opts ...Option) (string, error)
NewLong generates a unique nanoID with a length of 12 characters and the given options.
<a name="Validate"></a>
## func [Validate](<https://github.com/addmax-ai/publicid/blob/master/publicid.go#L60>)
## func [Validate](<https://github.com/agentstation/publicid/blob/master/publicid.go#L60>)
```go
func Validate(id string) error
Expand All @@ -139,7 +139,7 @@ func Validate(id string) error
Validate checks if a given field name's public ID value is valid according to the constraints defined by package publicid.

<a name="ValidateLong"></a>
## func [ValidateLong](<https://github.com/addmax-ai/publicid/blob/master/publicid.go#L66>)
## func [ValidateLong](<https://github.com/agentstation/publicid/blob/master/publicid.go#L66>)

```go
func ValidateLong(id string) error
Expand All @@ -148,7 +148,7 @@ func ValidateLong(id string) error
validateLong checks if a given field name's public ID value is valid according to the constraints defined by package publicid.
<a name="Option"></a>
## type [Option](<https://github.com/addmax-ai/publicid/blob/master/publicid.go#L16>)
## type [Option](<https://github.com/agentstation/publicid/blob/master/publicid.go#L16>)
Option is a function type for configuring ID generation.
Expand All @@ -157,7 +157,7 @@ type Option func(*config)
```
<a name="Attempts"></a>
### func [Attempts](<https://github.com/addmax-ai/publicid/blob/master/publicid.go#L24>)
### func [Attempts](<https://github.com/agentstation/publicid/blob/master/publicid.go#L24>)
```go
func Attempts(n int) Option
Expand Down
2 changes: 1 addition & 1 deletion generate.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package publicid

//go:generate gomarkdoc -o README.md -e . --repository.url https://github.com/addmax-ai/publicid --repository.default-branch master --repository.path /
//go:generate gomarkdoc -o README.md -e . --repository.url https://github.com/agentstation/publicid --repository.default-branch master --repository.path /

0 comments on commit 19f82c2

Please sign in to comment.