From 78c9487526ec1a9e0f65699b21a11223a032511b Mon Sep 17 00:00:00 2001 From: hloeffler Date: Tue, 20 Dec 2016 22:15:39 +0100 Subject: [PATCH] "Typo" to make GoLint happy --- wrap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrap.go b/wrap.go index 0b9b744..6da45ee 100644 --- a/wrap.go +++ b/wrap.go @@ -21,7 +21,7 @@ type Signer interface { gossh.Signer } -// ParseAuthorizedKeys parses a public key from an authorized_keys file used in +// ParseAuthorizedKey parses a public key from an authorized_keys file used in // OpenSSH according to the sshd(8) manual page. func ParseAuthorizedKey(in []byte) (out PublicKey, comment string, options []string, rest []byte, err error) { return gossh.ParseAuthorizedKey(in)