summaryrefslogtreecommitdiffstats
path: root/enc
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2020-08-26 23:38:18 -0400
committerrsiddharth <s@ricketyspace.net>2020-08-26 23:38:18 -0400
commit50857ce4bcdd99855b239c09a7d2995868f49bbb (patch)
tree46f6c314f2092aea60f4f0d60bb47b729c6a1cb5 /enc
parent4132bcec69d25b565e8957bf8ced3dbe41656158 (diff)
enc/b64.go: fromHexChar: update doc string
Diffstat (limited to 'enc')
-rw-r--r--enc/b64.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/enc/b64.go b/enc/b64.go
index de9c3a3..ee5a8b6 100644
--- a/enc/b64.go
+++ b/enc/b64.go
@@ -21,7 +21,7 @@ func encode(b uint16) string {
return string(b64_table[b])
}
-// adapted from
+// Adapted from
// https://go.googlesource.com/go/+/refs/tags/go1.15/src/encoding/hex/hex.go#83
func fromHexChar(c byte) uint16 {
switch {