From a3b94dc3804d9e98104a1594a487c652d08ec650 Mon Sep 17 00:00:00 2001 From: CodeLingo Bot Date: Wed, 13 Feb 2019 00:53:25 +0000 Subject: [PATCH] Fix function comments based on best practices from Effective Go Signed-off-by: CodeLingo Bot --- sshhelper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sshhelper.go b/sshhelper.go index 02c58ab..273544e 100644 --- a/sshhelper.go +++ b/sshhelper.go @@ -83,7 +83,7 @@ func getpass(prompt string) (pass string, err error) { return } -// ref golang.org/x/crypto/ssh/keys.go#ParseRawPrivateKey. +// ParsePemBlock: ref golang.org/x/crypto/ssh/keys.go#ParseRawPrivateKey. func ParsePemBlock(block *pem.Block) (interface{}, error) { switch block.Type {