Skip to content

Commit 8cfdb2f

Browse files
authored
doc: fix: Added documentations that works with the autogenerated documentation (#339)
* doc: fix: Add documentation that works with the autogenerated documentation * Update go.mod to accept go version 1.17 * test: add a few tests for one of the issues
1 parent 59b98b8 commit 8cfdb2f

35 files changed

+138
-32
lines changed
File renamed without changes.
File renamed without changes.

cipher/doc.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Package cipher is a package containing different implementations of certain ciphers
2+
package cipher
File renamed without changes.
File renamed without changes.

ciphers/rot13/rot13.go renamed to cipher/rot13/rot13.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
package rot13
44

55
import (
6-
"github.com/TheAlgorithms/Go/ciphers/caesar"
6+
"github.com/TheAlgorithms/Go/cipher/caesar"
77
)
88

99
// rot13 is a special case, which is fixed the shift of 13, of the Caesar cipher
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)