Skip to content

Commit

Permalink
fix a typo in a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
martinlindhe committed Apr 18, 2019
1 parent 446402d commit 069ed0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base36.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func Decode(s string) uint64 {
var bigRadix = big.NewInt(36)
var bigZero = big.NewInt(0)

// EncodeBytesAsBytes encodes a byte slice base36
// EncodeBytesAsBytes encodes a byte slice to base36
func EncodeBytesAsBytes(b []byte) []byte {
x := new(big.Int)
x.SetBytes(b)
Expand Down

0 comments on commit 069ed0a

Please sign in to comment.