From 1faea2975ced2153e5086c1ee135f983db10150a Mon Sep 17 00:00:00 2001 From: cuishuang Date: Mon, 29 Sep 2025 11:51:24 +0800 Subject: all: fix some typos in comment Change-Id: Ia209f0a6d9b19d14e655c65d1287a1416b48c487 Reviewed-on: https://go-review.googlesource.com/c/crypto/+/707535 Reviewed-by: Carlos Amedee Reviewed-by: Michael Pratt Auto-Submit: Sean Liao Reviewed-by: Nicola Murino LUCI-TryBot-Result: Go LUCI Reviewed-by: Sean Liao --- ssh/example_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ssh/example_test.go') diff --git a/ssh/example_test.go b/ssh/example_test.go index d6bad3e..653f2c8 100644 --- a/ssh/example_test.go +++ b/ssh/example_test.go @@ -155,7 +155,7 @@ func ExampleNewServerConn() { } func ExampleServerConfig() { - // Minimal ServerConfig with SHA-1 algoritms disabled and supporting only + // Minimal ServerConfig with SHA-1 algorithms disabled and supporting only // public key authentication. // The algorithms returned by ssh.SupportedAlgorithms() are different from @@ -344,7 +344,7 @@ func ExampleClientConfig() { log.Fatalf("unable to parse private key: %v", err) } - // Minimal ClientConfig with SHA-1 algoritms disabled. + // Minimal ClientConfig with SHA-1 algorithms disabled. // The algorithms returned by ssh.SupportedAlgorithms() are different from // the default ones and do not include algorithms that are considered // insecure, such as those using SHA-1, returned by @@ -361,7 +361,7 @@ func ExampleClientConfig() { ssh.PublicKeys(signer), }, HostKeyCallback: ssh.FixedHostKey(hostKey), - // We should check that hostKey algorithm is inlcuded in + // We should check that hostKey algorithm is included in // algorithms.HostKeys. HostKeyAlgorithms: algorithms.HostKeys, } -- cgit v1.3