Skip to content

Commit

Permalink
feat: update import path
Browse files Browse the repository at this point in the history
  • Loading branch information
thde committed Oct 14, 2022
1 parent dfb9797 commit 15cc83e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# fakeword

[![Go Reference](https://pkg.go.dev/badge/github.com/thde/fakeword.svg)](https://pkg.go.dev/github.com/thde/fakeword) [![test](https://github.com/thde/fakeword/actions/workflows/test.yml/badge.svg)](https://github.com/thde/fakeword/actions/workflows/test.yml) [![Go Report Card](https://goreportcard.com/badge/github.com/thde/fakeword)](https://goreportcard.com/report/github.com/thde/fakeword)
[![Go Reference](https://pkg.go.dev/badge/thde.io/fakeword.svg)](https://pkg.go.dev/thde.io/fakeword) [![test](https://github.com/thde/fakeword/actions/workflows/test.yml/badge.svg)](https://github.com/thde/fakeword/actions/workflows/test.yml) [![Go Report Card](https://goreportcard.com/badge/thde.io/fakeword)](https://goreportcard.com/report/thde.io/fakeword)

Go package fakeword allows to generate fake words.

Expand All @@ -11,6 +11,8 @@ Adding some English words, will generate fake words that sound english.
```go
package main

import "thde.io/fakeword"

func main() {
words := []string{
"Psychotomimetic",
Expand Down
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package fakeword_test
import (
"fmt"

"github.com/thde/fakeword"
"thde.io/fakeword"
)

func ExampleGenerator_Word() {
Expand Down
2 changes: 1 addition & 1 deletion generator.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Package fakeword allows to generate fake words.
// Adding words of a certain language, allows to
// generate language like words.
package fakeword
package fakeword // import "thde.io/fakeword"

import (
"math/rand"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/thde/fakeword
module thde.io/fakeword

go 1.18
Empty file added go.sum
Empty file.

0 comments on commit 15cc83e

Please sign in to comment.