diff options
Diffstat (limited to 'libgo/go/encoding/pem/pem.go')
-rw-r--r-- | libgo/go/encoding/pem/pem.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/encoding/pem/pem.go b/libgo/go/encoding/pem/pem.go index 506196b1db9..ff2bed161ad 100644 --- a/libgo/go/encoding/pem/pem.go +++ b/libgo/go/encoding/pem/pem.go @@ -150,7 +150,7 @@ func Decode(data []byte) (p *Block, rest []byte) { func decodeError(data, rest []byte) (*Block, []byte) { // If we get here then we have rejected a likely looking, but // ultimately invalid PEM block. We need to start over from a new - // position. We have consumed the preamble line and will have consumed + // position. We have consumed the preamble line and will have consumed // any lines which could be header lines. However, a valid preamble // line is not a valid header line, therefore we cannot have consumed // the preamble line for the any subsequent block. Thus, we will always |