From a7de8ac2553552e8a91847e4d7ae1e0f2882c218 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Chalupeck=C3=BD?= Date: Thu, 13 Feb 2020 11:51:32 +0100 Subject: [PATCH] Fix typo in Session docs --- session.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/session.go b/session.go index 6c77d6c..f454228 100644 --- a/session.go +++ b/session.go @@ -14,7 +14,7 @@ import ( // Session provides access to information about an SSH session and methods // to read and write to the SSH channel with an embedded Channel interface from -// cypto/ssh. +// crypto/ssh. // // When Command() returns an empty slice, the user requested a shell. Otherwise // the user is performing an exec with those command arguments.