diff --git a/config.json b/config.json index abea8d081..cb3de932f 100644 --- a/config.json +++ b/config.json @@ -202,7 +202,7 @@ }, { "name": "Elon's Toys", - "slug": "elons-toys", + "slug": "jedliks-toys", "uuid": "18fb2aa2-9748-481e-a321-6b6844c1deb6", "concepts": [ "methods" diff --git a/exercises/concept/elons-toys/go.mod b/exercises/concept/elons-toys/go.mod deleted file mode 100644 index ac2094972..000000000 --- a/exercises/concept/elons-toys/go.mod +++ /dev/null @@ -1,4 +0,0 @@ -module elon - -go 1.18 - diff --git a/exercises/concept/elons-toys/.docs/hints.md b/exercises/concept/jedliks-toys/.docs/hints.md similarity index 100% rename from exercises/concept/elons-toys/.docs/hints.md rename to exercises/concept/jedliks-toys/.docs/hints.md diff --git a/exercises/concept/elons-toys/.docs/instructions.md b/exercises/concept/jedliks-toys/.docs/instructions.md similarity index 100% rename from exercises/concept/elons-toys/.docs/instructions.md rename to exercises/concept/jedliks-toys/.docs/instructions.md diff --git a/exercises/concept/elons-toys/.docs/introduction.md b/exercises/concept/jedliks-toys/.docs/introduction.md similarity index 100% rename from exercises/concept/elons-toys/.docs/introduction.md rename to exercises/concept/jedliks-toys/.docs/introduction.md diff --git a/exercises/concept/elons-toys/.meta/config.json b/exercises/concept/jedliks-toys/.meta/config.json similarity index 84% rename from exercises/concept/elons-toys/.meta/config.json rename to exercises/concept/jedliks-toys/.meta/config.json index 2cebd5933..946299a42 100644 --- a/exercises/concept/elons-toys/.meta/config.json +++ b/exercises/concept/jedliks-toys/.meta/config.json @@ -8,10 +8,10 @@ ], "files": { "solution": [ - "elons_toys.go" + "jedliks_toys.go" ], "test": [ - "elons_toys_test.go" + "jedliks_toys_test.go" ], "exemplar": [ ".meta/exemplar.go" @@ -24,7 +24,7 @@ ] }, "forked_from": [ - "csharp/elons-toys" + "csharp/jedliks-toys" ], "blurb": "Learn about methods by playing with Elon's toys", "custom": { diff --git a/exercises/concept/elons-toys/.meta/design.md b/exercises/concept/jedliks-toys/.meta/design.md similarity index 100% rename from exercises/concept/elons-toys/.meta/design.md rename to exercises/concept/jedliks-toys/.meta/design.md diff --git a/exercises/concept/elons-toys/.meta/exemplar.go b/exercises/concept/jedliks-toys/.meta/exemplar.go similarity index 98% rename from exercises/concept/elons-toys/.meta/exemplar.go rename to exercises/concept/jedliks-toys/.meta/exemplar.go index dbdfbb693..e5ddbe5f1 100644 --- a/exercises/concept/elons-toys/.meta/exemplar.go +++ b/exercises/concept/jedliks-toys/.meta/exemplar.go @@ -1,4 +1,4 @@ -package elon +package jedlik import "fmt" diff --git a/exercises/concept/elons-toys/car.go b/exercises/concept/jedliks-toys/car.go similarity index 95% rename from exercises/concept/elons-toys/car.go rename to exercises/concept/jedliks-toys/car.go index 2182cc1f1..d6ee60468 100644 --- a/exercises/concept/elons-toys/car.go +++ b/exercises/concept/jedliks-toys/car.go @@ -1,4 +1,4 @@ -package elon +package jedlik // Car implements a remote controlled car. type Car struct { diff --git a/exercises/concept/jedliks-toys/go.mod b/exercises/concept/jedliks-toys/go.mod new file mode 100644 index 000000000..1ee12df6d --- /dev/null +++ b/exercises/concept/jedliks-toys/go.mod @@ -0,0 +1,4 @@ +module jedlik + +go 1.18 + diff --git a/exercises/concept/elons-toys/elons_toys.go b/exercises/concept/jedliks-toys/jedliks_toys.go similarity index 97% rename from exercises/concept/elons-toys/elons_toys.go rename to exercises/concept/jedliks-toys/jedliks_toys.go index ed1cd8bb1..6b4c44765 100644 --- a/exercises/concept/elons-toys/elons_toys.go +++ b/exercises/concept/jedliks-toys/jedliks_toys.go @@ -1,4 +1,4 @@ -package elon +package jedlik // TODO: define the 'Drive()' method diff --git a/exercises/concept/elons-toys/elons_toys_test.go b/exercises/concept/jedliks-toys/jedliks_toys_test.go similarity index 99% rename from exercises/concept/elons-toys/elons_toys_test.go rename to exercises/concept/jedliks-toys/jedliks_toys_test.go index ac09dd407..2d1de65b0 100644 --- a/exercises/concept/elons-toys/elons_toys_test.go +++ b/exercises/concept/jedliks-toys/jedliks_toys_test.go @@ -1,4 +1,4 @@ -package elon +package jedlik import ( "testing"