1
0
mirror of https://github.com/golang/go synced 2024-11-18 02:54:47 -07:00

encoding/base64: fix copy-paste-o bug in RawURLEncoding docs

Fixes #12244

Change-Id: Iee4e45d9bca0718c71fcc574bc51b2084c3dcb2a
Reviewed-on: https://go-review.googlesource.com/13783
Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com>
This commit is contained in:
Brad Fitzpatrick 2015-08-21 11:06:04 +09:00
parent b733234856
commit 7fb7f53232

View File

@ -75,7 +75,7 @@ var URLEncoding = NewEncoding(encodeURL)
// This is the same as StdEncoding but omits padding characters.
var RawStdEncoding = StdEncoding.WithPadding(NoPadding)
// URLEncoding is the unpadded alternate base64 encoding defined in RFC 4648.
// RawURLEncoding is the unpadded alternate base64 encoding defined in RFC 4648.
// It is typically used in URLs and file names.
// This is the same as URLEncoding but omits padding characters.
var RawURLEncoding = URLEncoding.WithPadding(NoPadding)