From d7510ecdf738c384929a2f62b911432b9b3b185e Mon Sep 17 00:00:00 2001 From: Stephen Fox Date: Tue, 5 Feb 2019 09:54:18 -0500 Subject: [PATCH] Tweaked 'PublicKeyAuthorizedKeysLine()' comment. --- helper/ssh/key_pair.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helper/ssh/key_pair.go b/helper/ssh/key_pair.go index c18d7b8ad..51a21e786 100644 --- a/helper/ssh/key_pair.go +++ b/helper/ssh/key_pair.go @@ -211,8 +211,8 @@ type KeyPair interface { PrivateKeyPemBlock() []byte // PublicKeyAuthorizedKeysLine returns a slice of bytes - // representing the public key in OpenSSH authorized_keys format - // with the specified new line. + // representing the public key as a line in OpenSSH authorized_keys + // format with the specified new line. PublicKeyAuthorizedKeysLine(NewLineOption) []byte }