From 0843403b8f601e8fd5389b3d3bf2b5d3c6714628 Mon Sep 17 00:00:00 2001
From: Vladislav Spirenkov <moiplov@gmail.com>
Date: Mon, 16 Feb 2015 17:01:21 +0300
Subject: [PATCH] Update easyssh.go

---
 easyssh.go | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/easyssh.go b/easyssh.go
index dbb16be..33411ac 100644
--- a/easyssh.go
+++ b/easyssh.go
@@ -18,7 +18,8 @@ import (
 // Contains main authority information.
 // User field should be a name of user on remote server (ex. john in ssh john@example.com).
 // Server field should be a remote machine address (ex. example.com in ssh john@example.com)
-// Key is a path to public key on your local machine.
+// Key is a path to private key on your local machine.
+// Port is SSH server port on remote machine.
 // Note: easyssh looking for private key in user's home directory (ex. /home/john + Key).
 // Then ensure your Key begins from '/' (ex. /.ssh/id_rsa)
 type MakeConfig struct {