From: Adam Langley Date: Thu, 22 Oct 2009 02:47:52 +0000 (-0700) Subject: Fix typo in documentation. X-Git-Tag: weekly.2009-11-06~239 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7d68093f935f9bb5cd6964b1718f2a53a58c04c4;p=gostls13.git Fix typo in documentation. R=r APPROVED=r DELTA=2 (1 added, 0 deleted, 1 changed) OCL=35977 CL=35977 --- diff --git a/src/pkg/encoding/pem/pem.go b/src/pkg/encoding/pem/pem.go index fc9cd9a362..c1c4600e3e 100644 --- a/src/pkg/encoding/pem/pem.go +++ b/src/pkg/encoding/pem/pem.go @@ -69,7 +69,8 @@ var pemEndOfLine = strings.Bytes("-----") // Decode will find the next PEM formatted block (certificate, private key // etc) in the input. It returns that block and the remainder of the input. If -// no PEM data is found, p is nil and the whole of the input is returned in // rest. +// no PEM data is found, p is nil and the whole of the input is returned in +// rest. func Decode(data []byte) (p *Block, rest []byte) { // pemStart begins with a newline. However, at the very beginning of // the byte array, we'll accept the start string without it.