Skip to content

Commit

Permalink
Merge pull request #8 from stscoundrel/fix/module-name
Browse files Browse the repository at this point in the history
Module name: match repo name
  • Loading branch information
stscoundrel authored Nov 28, 2021
2 parents 530d884 + 5079e45 commit 4e0fe63
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ package main
import (
"fmt"

"github.com/stscoundrel/riimut/elderfuthark"
"github.com/stscoundrel/riimut/futhorc"
"github.com/stscoundrel/riimut/medievalfuthork"
"github.com/stscoundrel/riimut/youngerfuthark"
"github.com/stscoundrel/riimut-go/elderfuthark"
"github.com/stscoundrel/riimut-go/futhorc"
"github.com/stscoundrel/riimut-go/medievalfuthork"
"github.com/stscoundrel/riimut-go/youngerfuthark"
)

func main() {
Expand Down Expand Up @@ -57,7 +57,7 @@ package main
import (
"fmt",

"github.com/stscoundrel/riimut/youngerfuthark"
"github.com/stscoundrel/riimut-go/youngerfuthark"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion elderfuthark/elderfuthark.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package elderfuthark

import (
"github.com/stscoundrel/riimut/transform"
"github.com/stscoundrel/riimut-go/transform"
)

func LettersToRunes(content string) string {
Expand Down
2 changes: 1 addition & 1 deletion futhorc/futhorc.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package futhorc

import (
"github.com/stscoundrel/riimut/transform"
"github.com/stscoundrel/riimut-go/transform"
)

func LettersToRunes(content string) string {
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/stscoundrel/riimut
module github.com/stscoundrel/riimut-go

go 1.17
2 changes: 1 addition & 1 deletion medievalfuthork/medievalfuthork.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package medievalfuthork

import (
"github.com/stscoundrel/riimut/transform"
"github.com/stscoundrel/riimut-go/transform"
)

func LettersToRunes(content string) string {
Expand Down
8 changes: 4 additions & 4 deletions riimut_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package tests
import (
"testing"

"github.com/stscoundrel/riimut/elderfuthark"
"github.com/stscoundrel/riimut/futhorc"
"github.com/stscoundrel/riimut/medievalfuthork"
"github.com/stscoundrel/riimut/youngerfuthark"
"github.com/stscoundrel/riimut-go/elderfuthark"
"github.com/stscoundrel/riimut-go/futhorc"
"github.com/stscoundrel/riimut-go/medievalfuthork"
"github.com/stscoundrel/riimut-go/youngerfuthark"
)

func TestYoungerFutharkTransformsLettersToRunes(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion youngerfuthark/youngerfuthark.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package youngerfuthark

import (
"github.com/stscoundrel/riimut/transform"
"github.com/stscoundrel/riimut-go/transform"
)

func LettersToRunes(content string) string {
Expand Down

0 comments on commit 4e0fe63

Please sign in to comment.