Skip to content

Commit 60f0c67

Browse files
committed
Update package names to match exercise slugs
1 parent f838b31 commit 60f0c67

31 files changed

Lines changed: 33 additions & 33 deletions

File tree

exercises/practice/circular-buffer/.meta/example.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package circular
1+
package circularbuffer
22

33
// standard library container/ring package and "one slot open" technique
44
// as described at WP.

exercises/practice/circular-buffer/circular_buffer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package circular
1+
package circularbuffer
22

33
// Implement a circular buffer of bytes supporting both overflow-checked writes
44
// and unconditional, possibly overwriting, writes.

exercises/practice/circular-buffer/circular_buffer_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package circular
1+
package circularbuffer
22

33
import (
44
"io"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module standard
1+
module circularbuffer
22

33
go 1.23
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module complex
1+
module complexnumbers
22

33
go 1.23
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module dnd-character
1+
module dndcharacter
22

33
go 1.23
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module palindrome
1+
module palindromeproducts
22

33
go 1.23
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module nthprime
1+
module primefactors
22

33
go 1.23

exercises/practice/protein-translation/.approaches/introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The key to solving Protein Translation is to look up valid RNA and to error on i
1212

1313
```go
1414
// Package protein has functionality to translate RNA sequences into proteins.
15-
package protein
15+
package proteintranslation
1616

1717
import (
1818
"errors"
@@ -80,7 +80,7 @@ For more information, check the [`switch` statement approach][approach-switch-st
8080

8181
```go
8282
// Package protein has functionality to translate RNA sequences into proteins.
83-
package protein
83+
package proteintranslation
8484

8585
import "errors"
8686

exercises/practice/protein-translation/.approaches/map/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
```go
44
// Package protein has functionality to translate RNA sequences into proteins.
5-
package protein
5+
package proteintranslation
66

77
import "errors"
88

0 commit comments

Comments
 (0)