From da78f37e4252d68718a473b1b3a239c2fa16293e Mon Sep 17 00:00:00 2001 From: Russ Magee Date: Sat, 8 Dec 2018 11:29:58 -0800 Subject: [PATCH] Rearranged godoc pkg comments Signed-off-by: Russ Magee --- consts.go | 4 +++- hkexauth.go | 6 ++++-- hkexsession.go | 6 ++++-- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/consts.go b/consts.go index e8ad6cb..14f5132 100644 --- a/consts.go +++ b/consts.go @@ -1,4 +1,4 @@ -// Package hkexsh - common constants for the HKExSh +// Package hkexsh - a secure terminal client/server written from scratch in Go // // Copyright (c) 2017-2018 Russell Magee // Licensed under the terms of the MIT license (see LICENSE.mit in this @@ -7,6 +7,8 @@ // golang implementation by Russ Magee (rmagee_at_gmail.com) package hkexsh +// common constants for the HKExSh + // Version string returned by tools const Version = "0.7pre (NO WARRANTY)" diff --git a/hkexauth.go b/hkexauth.go index a70a02c..438c36e 100644 --- a/hkexauth.go +++ b/hkexauth.go @@ -1,4 +1,6 @@ -// Authentication routines for the HKExSh +package hkexsh + +// Package hkexsh - a secure terminal client/server written from scratch in Go // // Copyright (c) 2017-2018 Russell Magee // Licensed under the terms of the MIT license (see LICENSE.mit in this @@ -6,7 +8,7 @@ // // golang implementation by Russ Magee (rmagee_at_gmail.com) -package hkexsh +// Authentication routines for the HKExSh import ( "bytes" diff --git a/hkexsession.go b/hkexsession.go index 74e07b9..8b4183f 100644 --- a/hkexsession.go +++ b/hkexsession.go @@ -1,4 +1,6 @@ -// Session info/routines for the HKExSh +package hkexsh + +// Package hkexsh - a secure terminal client/server written from scratch in Go // // Copyright (c) 2017-2018 Russell Magee // Licensed under the terms of the MIT license (see LICENSE.mit in this @@ -6,7 +8,7 @@ // // golang implementation by Russ Magee (rmagee_at_gmail.com) -package hkexsh +// Session info/routines for the HKExSh import ( "fmt"