]> Cypherpunks repositories - gostls13.git/commitdiff
Fix typo in documentation.
authorAdam Langley <agl@golang.org>
Thu, 22 Oct 2009 02:47:52 +0000 (19:47 -0700)
committerAdam Langley <agl@golang.org>
Thu, 22 Oct 2009 02:47:52 +0000 (19:47 -0700)
R=r
APPROVED=r
DELTA=2  (1 added, 0 deleted, 1 changed)
OCL=35977
CL=35977

src/pkg/encoding/pem/pem.go

index fc9cd9a362f9a421b8eb19ce3f87c1c7b06e8d73..c1c4600e3e0cd2a94f87e4347d50bbd1ad2138f7 100644 (file)
@@ -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.